Traceback (most recent call last): File "D:\project\test.py", line 89, in <module> xls = pd.ExcelFile('label_value.xlsx') File "D:\ProgramData\anaconda3\lib\site-packages\pandas\io\excel\_base.py", line 1656, in __init__ raise ValueError( ValueError: Excel file format cannot be determined, you must specify an engine manually.
时间: 2023-07-31 19:12:40 浏览: 239
linux 下 pip3 报错“ File “/usr/bin/pip3”, line 9, in from pip import mainImportError: canno”处理
5星 · 资源好评率100%
这个错误通常是因为 Pandas 无法自动确定 Excel 文件的格式。您可以尝试使用以下代码来手动指定引擎并读取 Excel 文件:
```
import pandas as pd
# 用 ExcelFile 来确定文件格式
xls = pd.ExcelFile('label_value.xlsx', engine='openpyxl')
# 读取 Excel 文件
df = pd.read_excel(xls, 'Sheet1')
```
在这个例子中,您需要将 'label_value.xlsx' 替换为您实际使用的 Excel 文件名,并将 'Sheet1' 替换为您想要读取的工作表名称。注意在第一行指定 engine 参数为 'openpyxl',这是因为 Pandas 默认使用的 xlrd 引擎无法处理较新版本的 Excel 文件。
阅读全文