摘要:
pytest 官方API文档:https://docs.pytest.org/en/8.0.x/reference/reference.html#config-cache 之前复习整理:https://www.cnblogs.com/xiaobaibailongma/category/1947423 阅读全文
摘要:
面向对象: #!/usr/bin/python # -*- coding: UTF-8 -*- class Employee: '所有员工的基类' empCount = 0 def __init__(self, name, salary): self.name = name self.salary 阅读全文