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

Python:读取xlsx文件时报错xlrd.biffh.XLRDError: Excel xlsx file; not supported
在这里插入图片描述

xlrd.biffh.XLRDError: Excel xlsx file; not supported错误

通过查找资料,最新的xlrd居然不支持Excel xlsx文件的读取。发现找到解决该问题的办法有两种。

方法一:
在调用pandas库read_excel()函数时,添加条件“engine=‘openpyxl’”,借助openpyxl库来读取xlsx文件。即:read_excel(path,engine='openpyxl')

方法二:卸载最新的xlrd库,安装1.2.0版本的xlrd库。

//卸载
pip uninstall xlrd
//安装
pip3 install xlrd==1.2.0

你可能感兴趣的:(python)