编程语言
首页 > 编程语言> > python报错:【 AttributeError module 'time' has no attribute 'clock'】

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()方法

 

标签:clock,python,attribute,no,module,报错,time
来源: https://www.cnblogs.com/HGNET/p/16188922.html