python AttributeError: module 'time' has no attribute 'clock'
时间: 2023-10-08 13:05:02 浏览: 170
python clock
这个错误是因为在Python 3.8中,time模块不再支持clock()函数。[2]之前的版本中,我们可以使用time.clock()来测量程序的运行时间,但在Python 3.8中已被移除。所以在使用Python 3.8时,如果你尝试调用time.clock()会出现AttributeError: module 'time' has no attribute 'clock'的错误提示。如果你想测量程序的运行时间,可以使用time.perf_counter()或time.process_time()函数来代替。
阅读全文