Python如何获取程序执行时间?python获取程序执行时间的方法

这篇文章主要用实例介绍了Python如何获取程序执行时间?python获取程序执行时间的方法,方法简单易懂,具有一定参考借鉴价值,感兴趣的朋友可以了解下,希望大家阅读完这篇文章之后能有所收获 。

Python如何获取程序执行时间?python获取程序执行时间的方法

文章插图
python获取程序执行时间的方法通过实例给大家介绍三种
方法一:使用time.clock()方法获取程序执行时间
在python的标准库中,建议大家在任何情况下都选择用time.clock()方式来获取程序执行时间 。
使用方法:
import timestart =time.clock()#中间写上代码块
end = time.clock()print('程序运行时间为: %s Seconds'%(end-start))
方法二:使用time.time()方法计算
import timestart=time.time()#中间写上代码块end=time.time()print('程序运行时间为: %s Seconds'%(end-start))方法三:使用datetime.datetime.now()方法获取
import datetimestart=datetime.datetime.now()#中间写代码块
end=datetime.datetime.now()print('程序运行时间为: %s Seconds'%(end-start))补充说明:
pycham查看程序执行的时间方法
【Python如何获取程序执行时间?python获取程序执行时间的方法】首先导入时间模块
import time在程序开始执行的地方写入:
start=time.clock()在程序末尾写入:
end=time.clock()打印出运行时间:
print("最终时间 ",end-start)关于Python如何获取程序执行时间?python获取程序执行时间的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识 。如果想要了解更多有关python的小知识,可以继续关注哦!

    推荐阅读