python调用时间装饰器检测函数运行时间

匿名 (未验证) 提交于 2019-12-02 22:51:30

用一个装饰器,监控程序的运行时间

import time  def count_time(func):     def int_time(*args, **kwargs):         start_time = time.time()  # 程序开始时间         func()         over_time = time.time()   # 程序结束时间         total_time = over_time - start_time         print('程序共计%s秒' % total_time)      return int_time  @count_time def main():     print('>>>>开始计算函数运行时间')     x = 0     for i in range(1000000):         x=x//13     print(x)  if __name__ == '__main__':     main()

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!