首页 > 编程语言 > 详细

python装饰器使用

时间:2019-08-19 11:03:50      阅读:71      评论:0      收藏:0      [点我收藏+]

1、经常被问程序执行了多久,每个函数都去写很麻烦,所以打算写个装饰器自动计算程序执行时间;推荐文档,大多数基础题都有:  https://python3-cookbook.readthedocs.io/zh_CN/latest/ 

import  time

def clock(func):
def clocked(*args, **kwargs):
start = time.time()
result = func(*args, **kwargs)
end = time.time()
print(func.__name__, end - start)
return result
return clocked

@clock
def test():
print("excute...")
time.sleep(5)

test()
执行结果:

"D:\Program Files\python3.6.7\python.exe" D:/pythonWorkspace/untitled4/22.py
excute...
test 5.000607967376709

Process finished with exit code 0

 

2、装饰器错误使用方法

import datetime
import time

def clock(func):
start = datetime.datetime.now()
print(start)
def clocked(*args, **kwargs):
func(*args, **kwargs)
end = datetime.datetime.now()
total = (end - start).total_seconds()
print(end)
print("执行%s耗时:%d" %(func.__name__, total))
return clocked

@clock
def test():
print("excute...")
time.sleep(5)

test()
错误的执行结果:

"D:\Program Files\python3.6.7\python.exe" D:/pythonWorkspace/untitled4/55.py
2019-08-19 10:24:29.904106
2019-08-19 10:24:29.904106
执行test耗时:0
excute...

Process finished with exit code 0

 

python装饰器使用

原文:https://www.cnblogs.com/harryTree/p/11375604.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!