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

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

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

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

原文由 john2x 发布,翻译遵循 CC BY-SA 4.0 许可协议


回答:

Python中最简单的方法:

 import time

start_time = time.time()

main()

print("--- %s seconds ---" % (time.time() - start_time))

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

印刷:

 --- 0.764891862869 seconds ---

原文由 rogeriopvl 发布,翻译遵循 CC BY-SA 3.0 许可协议


回答:

在 Linux 或 Unix 中:

 $ time python yourprogram.py

在 Windows 中,请参阅 StackOverflow 问题: How do I measure execution time of a command on the Windows command line?

对于更详细的输出,

 $ time -v python yourprogram.py

Command being timed: "python3 yourprogram.py"

User time (seconds): 0.08

System time (seconds): 0.02

Percent of CPU this job got: 98%

Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.10

Average shared text size (kbytes): 0

Average unshared data size (kbytes): 0

Average stack size (kbytes): 0

Average total size (kbytes): 0

Maximum resident set size (kbytes): 9480

Average resident set size (kbytes): 0

Major (requiring I/O) page faults: 0

Minor (reclaiming a frame) page faults: 1114

Voluntary context switches: 0

Involuntary context switches: 22

Swaps: 0

File system inputs: 0

File system outputs: 0

Socket messages sent: 0

Socket messages received: 0

Signals delivered: 0

Page size (bytes): 4096

Exit status: 0

原文由 steveha 发布,翻译遵循 CC BY-SA 4.0 许可协议


回答:

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

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

原文由 john2x 发布,翻译遵循 CC BY-SA 4.0 许可协议

以上是 如何获得 Python 程序的执行时间? 的全部内容, 来源链接: utcz.com/p/938620.html

回到顶部