AttributeError module 'time' has no attribute 'clock'

环境

python 3.8

问题:

在python运行代码:

import time
print(time.clock())

出现错误:

在这里插入图片描述

原因

Python time.clock在Python3.3废弃,在Python3.8中将被移除

解决方法

使用perf_counter()方法

你可能感兴趣的:(错误日志,python)