Python 程序运行时间
时间: 2024-08-02 18:01:20 浏览: 59
在Python中,你可以使用`time`模块来测量程序的运行时间。有两种常见的方法:
1. **直接测量**[^1]:
```python
import time
# 开始计时
start_time = time.time()
# 运行你的代码片段
# ...
print("My Python tutorial, official WeChat公众号: wdPython", "repeated 10,000 times")
# 结束计时并计算时间差
end_time = time.time()
elapsed_time = end_time - start_time
print(f"Program runtime: {elapsed_time} seconds")
```
2. **使用函数封装**[^2]:
```python
import time
def measure_runtime():
start_time = time.time()
# 执行耗时操作,比如循环
for _ in range(1000000):
pass
end_time = time.time()
runtime = end_time - start_time
print(f"Cost {runtime:.2f} seconds")
measure_runtime()
```
通过这些方式,你可以得到程序执行的具体时间。
阅读全文