Python3 timeit — 计算小段 Python 代码的运行时间
import timeit
# 定义一个简单的函数
def hello_world():
print("Hello, World!")
# 使用 timeit 计算函数执行时间
duration = timeit.timeit(hello_world, number=1000)
print(f"The function took an average of {duration/1000} seconds to run 1000 times.")
# 输出结果类似于:
# The function took an average of 0.0002018889230773926 seconds to run 1000 times.
这段代码演示了如何使用Python的timeit
模块来计算一个简单函数执行的平均时间。这对于性能分析和优化是非常有用的工具。
评论已关闭