python之路--装饰器

Posted youzihhh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之路--装饰器相关的知识,希望对你有一定的参考价值。

import time
def wrapper(f): #装饰器函数
def inner(*args,**kwargs):
start = time.time()
ret = f(*args,**kwargs) #被装饰的函数
end = time.time()
print(end-start)
return ret
return inner
@wrapper #@语法糖,需要紧跟着被装饰的函数
def func(*args,**kwargs): #被装饰的函数
print(‘装饰器啊装饰器‘)
ret = func() #实际上是inner()

以上是关于python之路--装饰器的主要内容,如果未能解决你的问题,请参考以下文章

python之路--装饰器

python之路---15 装饰器

Python之路-装饰器

python之路--装饰器函数

Python之路第七篇:Python装饰器

Python之路-装饰器