装饰器
Posted jayson-0425
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了装饰器相关的知识,希望对你有一定的参考价值。
装饰器:
import time def timer(f): def inner(a): start_time = time.time() res = f(1) # 被装饰的函数 end_time = time.time() print(end_time - start_time) return res return inner @timer def func(a): # 传参 time.sleep(0.1) print("11111111",a) return 123456 res = func(1) # inner print(res)
以上是关于装饰器的主要内容,如果未能解决你的问题,请参考以下文章