python读取excel报错Excel xlsx file; not supported解决方法

问题描述:

python读取excel文件时,报Excel xlsx file; not supported错误。
python读取excel报错Excel xlsx file; not supported解决方法_第1张图片


问题根源:

xlrd1.2.0之后的版本不支持xlsx格式,只支持xls格式


解决方法:

``1、卸载高版本的xlrd,安装1.2.0老版本的xlrd。

pip uninstall xlrd
pip install xlrd==1.2.0

python读取excel报错Excel xlsx file; not supported解决方法_第2张图片
2、将excel文件从xlsx另存为xls。(推荐

你可能感兴趣的:(python,python,excel,开发语言)