使用pandas时 报错xlrd.biffh.XLRDError: Excel xlsx file; not supported 的解决方法

使用pandas时 报错xlrd.biffh.XLRDError: Excel xlsx file; not supported 的解决方法

解决方式一:xlrd不支持新版本。解决方式:可安装旧版本。
在cmd中运行:
pip uninstall xlrd
pip install xlrd==1.2.0

解决方式二:用openpyxl代替xlrd打开.xlsx文件。
casedata=pd.read_excel(conf.conf().casePath,sheet_name=‘Sheet1’,engine=‘openpyxl’)

你可能感兴趣的:(python)