python 装饰器统计某个函数的运行时间
Posted 一剑001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 装饰器统计某个函数的运行时间相关的知识,希望对你有一定的参考价值。
import datetime def count_time(func): def int_time(*args, **kwargs): start_time = datetime.datetime.now() # 程序开始时间 func() over_time = datetime.datetime.now() # 程序结束时间 total_time = (over_time-start_time).total_seconds() print(‘程序共计%s秒‘ % total_time) return int_time @count_time def main(): print(‘>>>>开始计算函数运行时间‘) for i in range(1, 1000): for j in range(i): print(j) if __name__ == ‘__main__‘: main()
以上是关于python 装饰器统计某个函数的运行时间的主要内容,如果未能解决你的问题,请参考以下文章