gpt4 book ai didi

python - 我的 Python 应用程序需要多长时间才能运行?

转载 作者:IT老高 更新时间:2023-10-28 20:29:51 27 4
gpt4 key购买 nike

基本上,我希望能够输出应用程序运行所耗时。我想我需要使用某种 timeit 函数,但我不确定是哪一个。我正在寻找类似以下的内容...

START MY TIMER
code for application
more code
more code
etc
STOP MY TIMER

OUTPUT ELAPSED TIME 在定时器的启动和停止之间执行上述代码。想法?

最佳答案

最简单的方法是把:

import time
start_time = time.time()

一开始

print "My program took", time.time() - start_time, "to run"

在最后。

关于python - 我的 Python 应用程序需要多长时间才能运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12444004/

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