将数据帧写入to_excel时如何添加自定义页眉和页脚

时间:2019-04-21 18:14:21

标签: python pandas

我正在尝试使用熊猫将自定义页眉和页脚添加到数据框的excel输出中。

我的代码:

    header = 'File|000|123|45'
    footer = df.count()
    with open(file_name, 'a') as f:
        f.write(header)
        df.to_excel(f, header=False, index=False)
        f.write(footer)

这给我一个错误,指出“无法对已关闭的文件执行I / O操作。

在将df保存为excel的同时,有没有其他方法可以添加页眉和页脚。将其另存为CSV时,效果很好。

0 个答案:

没有答案