码迷,mamicode.com
首页 > 编程语言 > 详细

python 装饰器统计某个函数的运行时间

时间:2018-04-15 19:50:48      阅读:545      评论:0      收藏:0      [点我收藏+]

标签:程序   int   结束时间   func   seconds   ==   return   运行时间   second   

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 装饰器统计某个函数的运行时间

标签:程序   int   结束时间   func   seconds   ==   return   运行时间   second   

原文地址:https://www.cnblogs.com/yijian001/p/8848844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!