gpt4 book ai didi

python-3.x - 如何使用 Pandas.read_excel 在内存中打开 XLS 文件?

转载 作者:行者123 更新时间:2023-12-05 01:43:05 26 4
gpt4 key购买 nike

我有一个文件,我正尝试使用 Pandas.read_excel 打开它。我收到这样的错误 -

无效文件:

InMemoryUploadedFile: file.xlsx (application/vnd.openxmlformats-officedocument.spreadsheetml.sheet)

最佳答案

首先你需要用xlrd打开你的文件,然后将结果传递给带有参数engine="xlrd"的pandas.read_excel

import pandas as pd
import xlrd

book = xlrd.open_workbook(file_contents=myfile)
df = pd.read_excel(book,engine='xlrd')
print(df.head())

这里“myfile”是你的内存文件

关于python-3.x - 如何使用 Pandas.read_excel 在内存中打开 XLS 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50443069/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com