Python XLRDError: Excel xlsx file; not supported 报错原因

原因:xlrd更新到了2.0.1版本,只支持.xls文件,不支持.xlsx。
解决方法:降级安装xlrd

pip uninstall xlrd
pip install xlrd==1.2.0

你可能感兴趣的:(python)