如何测量 Python 程序的执行时间?
测量 python 程序执行时间
你想获悉程序执行耗时?python 中,最便捷的方法是:
import time start_time = time.time() main() # 你的程序入口 print("--- %.8f seconds ---" % (time.time() - start_time))
确保程序运行时长至少十分之一秒以上。打印结果如下:
--- 0.76489186 seconds ---
小提示:其他计时方法,如 timeit 模块,更适合微小代码段的计时,而上述方法适用于测量整个程序的执行时间。
以上就是如何测量 Python 程序的执行时间?的详细内容,更多请关注其它相关文章!