标签:cal col 一个 结果 包含 零基础 func 调用 fun
匿名函数:
calc=lambda x:x*3 print(calc(3)) #返回9
高阶函数:
装饰器:
本质是函数, 功能是为其他函数添加附加功能
简单装饰器示例-统计函数的运行时间:
import time def timmer(func): def wrapper(*args,**kwargs): start_time=time.time() func() stop_time=time.time() print("run time:",stop_time-start_time) return wrapper @timmer def test(): time.sleep(3) print("i am in test") test()
执行结果:
i am in test
run time: 3.0001983642578125
标签:cal col 一个 结果 包含 零基础 func 调用 fun
原文地址:http://www.cnblogs.com/bellwang/p/7687982.html