python报错:【 AttributeError module 'time' has no attribute 'clock'】
python版本: 3.8
问题:在python运行代码:
import time
print(time.clock())
出现错误 : AttributeError module 'time' has no attribute 'clock'
原因 : Python time.clock在Python3.3废弃,在Python3.8中将被移除
解决方法 : 使用perf_counter()方法
本文来自博客园,作者:木子欢儿,转载请注明原文链接:https://www.cnblogs.com/HGNET/p/16188922.html