摘要: pytest 官方API文档:https://docs.pytest.org/en/8.0.x/reference/reference.html#config-cache 之前复习整理:https://www.cnblogs.com/xiaobaibailongma/category/1947423 阅读全文
posted @ 2024-04-03 19:42 小白龙白龙马 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 面向对象: #!/usr/bin/python # -*- coding: UTF-8 -*- class Employee: '所有员工的基类' empCount = 0 def __init__(self, name, salary): self.name = name self.salary 阅读全文
posted @ 2024-04-03 16:10 小白龙白龙马 阅读(6) 评论(0) 推荐(0) 编辑