码迷,mamicode.com
首页 > 其他好文 > 详细

计算程序运行时间

时间:2019-06-20 17:14:26      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:run   class   tail   details   log   int   bsp   func   port   

只需导入time包,在程序开头和结尾加上记录时刻的函数,最后相减

import time

start = time.time()
run_function()
end = time.time()
print str(end)

 

参考:https://blog.csdn.net/laobai1015/article/details/83618971

计算程序运行时间

标签:run   class   tail   details   log   int   bsp   func   port   

原文地址:https://www.cnblogs.com/xxswkl/p/11059679.html

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