Python使用xlrd读取xlsx文件报错:xlrd.biffh.XLRDError:Excel xlsx file;not supported

Python使用xlrd读取xlsx文件报错:xlrd.biffh.XLRDError:Excel xlsx file;not supported

Python使用xlrd读取xlsx文件报错:xlrd.biffh.XLRDError:Excel xlsx file;not supported_第1张图片
打开xlsx文件时报如上错误,原因是xlrd的版本太新,只能打开xls文件而不支持xlsx文件,解决方法是卸掉新版本,安装旧版本,即可解决。
pip uninstall xlrd
pip install xlrd==1.2.0

你可能感兴趣的:(Python使用xlrd读取xlsx文件报错:xlrd.biffh.XLRDError:Excel xlsx file;not supported)