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

打印函数运行时间的装饰器

时间:2017-05-29 13:30:50      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:时间   result   turn   rgs   port   star   his   打印   name   

 1 import time
 2 
 3 def timethis(func):
 4     """
 5     测试函数运行花费时间的装饰器
 6     """
 7     def wrapper(*args, **kwargs):
 8         start = time.time()
 9         result = func(*args, **kwargs)
10         end = time.time()
11         print("函数 %s 运行时间: %s" % func.__name__, end - start)
12         return result
13     return wrapper

 

打印函数运行时间的装饰器

标签:时间   result   turn   rgs   port   star   his   打印   name   

原文地址:http://www.cnblogs.com/tingshuo123/p/6917769.html

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