PySe-024-装饰器模型源码
无参装饰器模型源代码:
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 4 import time 5 6 # 无参装饰器模型 7 def decorator(func): 8 def wrapper(*args, **kwargs): 9 """ 10 自行根据业务需要添加 11 """ 12 start_time = time.time() 13 res = func(*args, **kwargs) 14 end_time = time.time() 15 print("执行函数耗时:%s" % (end_time - start_time)) 16 """ 17 自行根据业务需求添加 18 """ 19 return res 20 21 return wrapper
欢迎 【 留言 || 关注 || 打赏 】 。您的每一份心意都是对我的鼓励和支持!非常感谢!欢迎互加,相互交流学习!
作者:范丰平,本文链接:https://www.cnblogs.com/fengpingfan/p/13522570.html
Copyright @范丰平 版权所有,如需转载请标明本文原始链接出处,严禁商业用途! 我的个人博客链接地址:http://www.cnblogs.com/fengpingfan