你上上个回答的代码,我运行时报错ValueError: Excel file format cannot be determined, you must specify an engine manually.
时间: 2023-10-19 09:04:03 浏览: 190
keras报错:ValueError: Cannot create group in read only mode
5星 · 资源好评率100%
这个错误通常是因为Pandas无法自动检测Excel文件的格式,需要手动指定使用的解析引擎。可以在read_excel函数中添加engine参数,如下所示:
```python
import pandas as pd
df = pd.read_excel('data.xlsx', engine='openpyxl')
```
其中,engine参数可以指定为openpyxl、xlrd、xlsxwriter等解析引擎之一。如果你的电脑上没有安装这些引擎,需要先使用pip或conda进行安装。
阅读全文