pandas无法读取.xlsx文件,报错xlrd.biffh.XLRDError: Excel xlsx file; not supported

报错原因:xlrd最新版本只支持打开.xls文件

解决:卸载xlrd,安装旧版本即可

pip install xlrd==1.2.0

你可能感兴趣的:(pandas无法读取.xlsx文件,报错xlrd.biffh.XLRDError: Excel xlsx file; not supported)