_timer = time.clock AttributeError: module 'time' has no attribute 'clock'
时间: 2023-07-31 11:13:54 浏览: 270
.time
在较新的 Python 版本中,`time.clock()` 方法已被废弃,且在 Python 3.8 版本中已经移除。相应地,你需要使用 `time.perf_counter()` 或 `time.process_time()` 方法来替代。
你可以将代码中的 `_timer = time.clock` 修改为以下任意一种方式:
```python
# 使用 time.perf_counter()
_timer = time.perf_counter
# 使用 time.process_time()
_timer = time.process_time
```
这样就可以解决 `AttributeError: module 'time' has no attribute 'clock'` 的错误了。请确保选择适合你需求的计时器方法。
阅读全文