gpt4 book ai didi

python - 使用 pandas 将工作表添加到现有 Excel 文件

转载 作者:行者123 更新时间:2023-12-04 17:31:06 25 4
gpt4 key购买 nike

# Set the working folder to the same folder as the script
os.chdir(os.path.dirname(os.path.abspath(__file__)))

test = send_request().content
df = pd.read_csv(io.StringIO(test.decode('utf-8')))
writer = pd.ExcelWriter('NHL_STATS_JSB_final.xlsx', \
engine = 'xlsxwriter')
df.to_excel(writer, 'Player statistics', index=False)
writer.save()

我不明白为什么,但我正在尝试添加工作表 Player statistics到我现在的 NHL_STATS_JSB_final.xlsx文件,但它不起作用。我的代码没有将工作表添加到文件中,而是使用当前文件并删除所有以前的工作表以添加新的工作表。

如何添加 Player statistics删除所有其他工作表到我当前的 Excel 文件?

最佳答案

这是我的一个项目中的一段代码。这应该完全符合您的要求。您需要使用 openpyxl 而不是 xlsxwriter 来允许您更新现有文件。

writer = pd.ExcelWriter(file_name, engine='openpyxl')

if os.path.exists(file_name):
book = openpyxl.load_workbook(file_name)
writer.book = book

df.to_excel(writer, sheet_name=key)
writer.save()
writer.close()

关于python - 使用 pandas 将工作表添加到现有 Excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46672207/

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