python装饰器
Posted studyer_domi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python装饰器相关的知识,希望对你有一定的参考价值。
装饰器可以让一个Python函数拥有原本没有的功能,也就是你可以通过装饰器,让一个平淡无奇的函数变的强大,变的漂亮。
import time
# 定义装饰器
def time_calc(func):
def wrapper(*args, **kargs):
start_time = time.time()
f = func(*args, **kargs)
exec_time = time.time() - start_time
print(10000 * exec_time)
return f
return wrapper
@time_calc
def add(a, b):
return a + b
@time_calc
def sub(a, b):
return a - b
add(1, 3)
sub(3, 1)
以上是关于python装饰器的主要内容,如果未能解决你的问题,请参考以下文章