gpt4 book ai didi

python - 如何获得 Python 程序的执行时间?

转载 作者:IT老高 更新时间:2023-10-28 11:59:18 29 4
gpt4 key购买 nike

我有一个 Python 命令行程序,需要一段时间才能完成。我想知道完成运行所需的确切时间。

我查看了 timeit 模块,但它似乎只适用于一小段代码。我想为整个节目计时。

最佳答案

Python中最简单的方法:

import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))

这假设您的程序至少需要十分之一秒才能运行。

打印:

--- 0.764891862869 seconds ---

关于python - 如何获得 Python 程序的执行时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1557571/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com