一、问题
在 Pycharm + Python3.8 环境中,调用 time.clock() 报错:AttributeError: module ‘time’ has no attribute ‘clock’。
二、解决方法
原因是 Python3.8 不再支持time.clock,但在调用时依然包含该方法。可以用 time.perf_counter() 来替换即可,然后可以正常使用计时
time.perf_counter()
一、问题
在 Pycharm + Python3.8 环境中,调用 time.clock() 报错:AttributeError: module ‘time’ has no attribute ‘clock’。
二、解决方法
原因是 Python3.8 不再支持time.clock,但在调用时依然包含该方法。可以用 time.perf_counter() 来替换即可,然后可以正常使用计时
time.perf_counter()