AttributeError: module 'pandas' has no attribute 'read_xls'
时间: 2023-06-21 11:19:32 浏览: 1112
使用pandas进行excel文件的读取写入
5星 · 资源好评率100%
这个错误是因为 pandas 模块没有 read_xls 这个属性。可能是因为你使用了过时的 pandas 版本,或者你的代码中写错了函数名。
你可以尝试使用 pandas 的 read_excel 函数来读取 Excel 文件,例如:
```
import pandas as pd
df = pd.read_excel('filename.xlsx')
```
如果你确定你的 pandas 版本较旧,你可以尝试升级 pandas,例如:
```
!pip install --upgrade pandas
```
阅读全文