data = pd.read_excel(dataPath,encoding='utf-8') TypeError: read_excel() got an unexpected keyword argument 'encoding'
时间: 2023-09-07 15:17:55 浏览: 2176
Part (A).zip_Data Path 2
这个错误是因为 `read_excel()` 方法并不支持 `encoding` 参数。如果你想指定编码方式,可以使用 `pandas.read_excel()` 方法中的 `encoding` 参数。
例如,你可以这样修改代码:
```python
data = pd.read_excel(dataPath, encoding='utf-8')
```
改为:
```python
data = pd.read_excel(dataPath, engine='openpyxl', encoding='utf-8')
```
其中,`engine` 参数指定了使用 `openpyxl` 引擎解析 Excel 文件,`encoding` 参数指定了编码方式。
阅读全文