摘要:
#类装饰器 class Foo(object): def __init__(self, func): self._func = func def __call__(self): print ('class decorator runing') self._func() print ('class d 阅读全文
摘要:
用来记录一个函数的运行时间 #定义一个函数用来统计传入函数的运行时间def timmer(func): #传入的参数是一个函数 def deco(*args, **kwargs): #本应传入运行函数的各种参数 print('\n函数:{_funcname_}开始运行:'.format(_funcn 阅读全文
摘要:
用列表推导式代替for循环创建列表 @timmer def test1(): a = [] for i in range(100000): a.append(i) # print(a) @timmer def test2(): a = [i for i in range(100000)] # pri 阅读全文