07 2022 档案
摘要:https://blog.csdn.net/qiqiyingse/article/details/117422118
阅读全文
摘要:import abc class Foo(metaclass=abc.ABCMeta): def f1(self): print(123) @abc.abstractmethod def f2(self):pass class Bar(Foo): def f2(self): print(666) o
阅读全文
摘要:#_*_ encoding: utf-8 _*_ @author: ty hery 2019/7/17 import sys import inspect class testsqawd(object): def hello(self): print('the name of method is #
阅读全文
摘要:https://blog.csdn.net/ybdesire/article/details/42145597
阅读全文
摘要:from django.test import TestCase # Create your tests here. # Python模块 # 模块就是一个保存了Python代码的文件,模块能定义函数,类和变量,模块里也能包含可执行的代码 # # Python模块的导入 # Import 语句 #
阅读全文