来写一个最基本的装饰器吧!
Posted 小苹果的苹果树
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了来写一个最基本的装饰器吧!相关的知识,希望对你有一定的参考价值。
程序需要,经常要计算一下程序运行的时间,所以……懒死了的我决定,把这个装饰器记下来,以后用的时候就直接过来复制一下:
import datetime def time_it(func): def _deco(*args, **kwargs): start = datetime.datetime.now() print("--- Start time: %s ---" % start) ret = func(*args, **kwargs) end = datetime.datetime.now() print("---- End time: %s ----" % end) print("Function spend time: %s" % (end - start)) return ret return _deco
这是个装饰器啊。别问我装饰器怎么用……去补补python基础吧。
以上是关于来写一个最基本的装饰器吧!的主要内容,如果未能解决你的问题,请参考以下文章