gpt4 book ai didi

python - 将行附加到excel表python的顶部

转载 作者:行者123 更新时间:2023-12-04 03:26:07 25 4
gpt4 key购买 nike

如何在excel表格的顶部添加一行?目标如下:
given example
文件本身是使用 pandas.df.to_excel 写入的如下:

import pandas

with pandas.ExcelWriter(output_filename) as writer:
for file in files:
df = pandas.read_csv(file)
df.to_excel(writer, sheet_name=file.replace(".csv", "").replace("_", " ").title(), index=False)

最佳答案

这是使用 XlsxWriter 作为 Excel 引擎的一种方法:

with pandas.ExcelWriter(output_filename, engine='xlsxwriter') as writer:
for file in files:
df = pandas.read_csv(file)
sheet_name = file.replace(".csv", "").replace("_", " ").title()

df.to_excel(writer, sheet_name=sheet_name, index=False, startrow=1)

worksheet = writer.sheets[sheet_name]
worksheet.write('A1', 'Here is some additional text')

关于python - 将行附加到excel表python的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67587560/

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