摘要: 为show函数传递不同的类型参数,就表现不同的行为 阅读全文
posted @ 2018-01-22 16:53 Erick-LONG 阅读(658) 评论(0) 推荐(0) 编辑
摘要: import time import functools def clock(func): @functools.wraps(func)#还原被装饰函数的__name__和__doc__属性 def clocked(*args,**kwargs):#支持关键字参数 t0 = time.perf_counter() result = func(*a... 阅读全文
posted @ 2018-01-22 15:50 Erick-LONG 阅读(267) 评论(0) 推荐(0) 编辑
摘要: import time import functools def clock(func): @functools.wraps(func)#还原被装饰函数的__name__和__doc__属性 def clocked(*args,**kwargs):#支持关键字参数 t0 = time.perf_counter() result = func(*a... 阅读全文
posted @ 2018-01-22 15:23 Erick-LONG 阅读(383) 评论(0) 推荐(0) 编辑
摘要: class Averager1(): '''计算移动平均值的类第一种写法''' def __init__(self): self.series = [] def __call__(self,new_value): self.series.append(new_value) total = sum(self.seri... 阅读全文
posted @ 2018-01-22 13:36 Erick-LONG 阅读(453) 评论(0) 推荐(0) 编辑