装饰器
Posted len1028
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了装饰器相关的知识,希望对你有一定的参考价值。
# _*_coding:utf-8_*_
# Author:len liu
import time
def bar():
# start_time=time.time()
time.sleep(1)
print(‘in the bar‘)
# stop_time=time.time()
# print(‘use time %s ‘ %use_time) #bar() -------------->
#in the bar
#use time 1.000830888748169
def timer(fun):
def add_use_time():
start_time=time.time()
fun()
stop_time=time.time()
print(‘use time %s ‘ %(stop_time - start_time))
return add_use_time
bar=timer(bar)
bar()
#--------------> #in the bar
#use time 1.000830888748169
以上是关于装饰器的主要内容,如果未能解决你的问题,请参考以下文章