Python3.8 异常AttributeError module ‘time’ has no attribute ‘clock’

原由:time.clock() 自从python3.3之后就被废除

出现异常:

在pycharm中加Python3.8环境,调用time.clock出异常:AttributeError module ‘time’ has no attribute ‘clock’

经过度娘,其原因:

Python3.8不再支持time.clock,但在调用时依然包含该方法;

有效处理:

用time.perf_counter()替换

  1. import time
  2. tis1 =time.perf_counter()
  3. print(“等待5秒……”)
  4. time.sleep(5)
  5. tis2=time.perf_counter()
  6. print(tis2-tis1)
  1. 等待5秒……

未经允许不得转载:萌萌guo angline - Apprentissage » Python3.8 异常AttributeError module ‘time’ has no attribute ‘clock’

赞 (1) 打赏

评论 0

Protected with IP Blacklist CloudIP Blacklist Cloud

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏