Python计算程序运行时间的方法
程序员文章站
2022-06-13 19:18:42
本文实例讲述了python计算程序运行时间的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
import time
def start_slee...
本文实例讲述了python计算程序运行时间的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
import time
def start_sleep():
time.sleep(3)
if __name__ == '__main__':
#the start time
start = time.clock()
#a program which will run for 3 seconds
start_sleep()
#the end time
end = time.clock()
print("the function run time is : %.03f seconds" %(end-start))
# end
希望本文所述对大家的python程序设计有所帮助。
上一篇: python正则表达式中的括号匹配问题
下一篇: python字符串替换的2种方法