Python批量删除word页眉和页脚

需求

得到一批文件,文件集的页眉页脚不是自己想要的,手动一个个删比较慢,好几百个文件,需要些一个批量删除并添加新的脚本,先只分享一个删的,有需要新增的可留言

解决

from docx import Document
 
def remove_headers_and_footers(docx_path):
    doc = Document(docx_path)
    for section in doc.sections:
        # 删除页眉和页脚
        section.different_first_page_header_footer = False
        section.header.is_linked_to_previous = True
        section.footer.is_linked_to_previous = True
    doc.save(docx_path)
 
docx_path = "test.docx"  # 替换为您的 Word 文件路径
remove_headers_and_footers(docx_path)

求助

有不一样或更好的方案,欢迎留言,成长你我他

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值