已解决(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘



成功解决:Python3.8异常 AttributeError: module ‘time‘ has no attribute ‘clock‘






文章目录

  • 报错信息
  • 报错翻译
  • 报错原因
  • 解决方案
  • 写在结尾






报错信息



代码如下


import pandas as pd

conn = pymssql.connect('服务器地址', '用户名', '密码','库名')

sql  = "SELECT TOP 10 CM_AN,ZY_SPFW_WS_GRP,ZY_SPFW_ALL_GRP FROM [IPRCloud].[dbo].[TM_INFO_ZY_GRP]"
data_list = pd.read_sql(sql, con=conn)
print(data_list)
conn.close()


报错问题


AttributeError: module ‘time‘ has no attribute ‘clock‘




报错翻译



翻译:AttributeError:模块“time”没有属性“clock”





报错原因



原因:在pycharm中加Python3.8环境,调用time.clock出异常:AttributeError module ‘time’ has no attribute ‘clock’
经过度娘,其原因:Python3.8不再支持time.clock





解决方案



1. 第一步

已解决(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘_第1张图片




2. 第二步,修改time.clock 为:time.perf_counter()

已解决(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘_第2张图片

已解决(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘_第3张图片



3. 第三步:再次运行输出成功

已解决(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘_第4张图片


写在结尾


本文已收录于:《告别Bug》专栏

本专栏用于记录学习和工作中遇到的各种疑难Bug问题,以及粉丝群里小伙伴提出的各种问题,文章形式:报错代码 + 报错翻译 + 报错原因 + 解决方法,包括程序安装、运行程序过程中等等问题,订阅专栏后如遇到其他问题可私聊帮忙解决!!!

你可能感兴趣的:(《告别Bug》,python,数据库开发,数据分析)