gpt4 book ai didi

python - 如何获取代码的执行时间?

转载 作者:太空宇宙 更新时间:2023-11-03 12:44:18 27 4
gpt4 key购买 nike

我想计算java、python、javascript等各种语言代码的执行时间。如何获取这些代码的执行时间。 python 包或任何其他工具中是否有任何工具可以通过传递文件(任何文件 java 或 python)路径来计算执行时间。请分享您的建议。

我知道通过在 python 代码中使用时间模块来获取执行时间。如何在python中执行Javascript和java代码,并在常用函数中获取执行时间。

我尝试了下面的方法。

import time

def get_exectime(file_path): # pass path of any file python,java,javascript, html, shell
start_time=time.time()
# execute the file given here. How to execute all file types here?
end_time=time.time()
exec_time=end_time-start_time
print(exec_time)

还有其他方法可以实现吗?

最佳答案

您可以使用 time 模块来做到这一点:

import time
start_time = time.time()
# your code
end_time = time.time()
print("Total execution time: {} seconds".format(end_time - start_time))

关于python - 如何获取代码的执行时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44878770/

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