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

错误:

使用

import pandas as pd

data = pd.read_excel('xiamen_data.xlsx')

读取excel文件时,报错

  • 错误信息:

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

报错原因:

xlrd2.0.1版本不支持.xlsx文件的读取
windows+r 输入cmd打开命令行后可使用pip show xlrd查看xlrd版本
python读取excel文件报错:xlrd.biffh.XLRDError: Excel xlsx file; not supported_第1张图片

解决方法:

版本过高就降低xlrd的版本
1.pip uninstall xlrd 先卸载xlrd
2.pip install xlrd==1.2.0 安装低版本的xlrd,这里安装的是1.2.0版本
python读取excel文件报错:xlrd.biffh.XLRDError: Excel xlsx file; not supported_第2张图片

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