标签:return get hello 时间 测试 time print data 装饰
装饰器
在不改变原来函数的基础上,给函数添加新的功能
import time
def get_data(func):
def get_hello(*args,**kwargs):
begin_time = time.time()#开始时间
data = func()
stop_time = time.time()#结束时间
print(stop_time - begin_time)
return data
return get_hello
@get_data
def hello():
time.sleep(3)
print(12345)
return 'ok'
print(hello())
标签:return,
get,
hello,
时间,
测试,
time,
print,
data,
装饰
From: https://www.cnblogs.com/striveforward/p/18235900