码迷,mamicode.com
首页 > 其他好文 > 详细

经test函数加个装饰器!

时间:2019-08-30 11:15:04      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:int   return   port   stop   The   run   func   ret   imp   

import time
def timer(func):
def deco():
start_time=time.time()
func()
stop_time=time.time()
print("the func run time is %s" %(stop_time-start_time))
return deco

@timer #test1=time(test1)
def test1():
time.sleep(3)
print(‘in the test1‘)

@timer
def test2():
time.sleep(3)
print (‘in the test2‘)

test1()
test2()

经test函数加个装饰器!

标签:int   return   port   stop   The   run   func   ret   imp   

原文地址:https://www.cnblogs.com/lyzfp/p/11433880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!