module 'xlrd' has no attribute 'xlsx'
时间: 2023-11-02 21:07:27 浏览: 166
python使用xlrd模块读取xlsx文件中的ip方法
5星 · 资源好评率100%
当出现"module 'xlrd' has no attribute 'xlsx'"的错误时,这通常是因为xlrd库的版本过旧。解决方法是使用openpyxl引擎来读取xlsx文件,可以通过以下代码解决问题:
pandas.read_excel("file.xlsx", engine="openpyxl")
阅读全文