我用python-docx尝试了以下内容:
section = self.document.sections[0]
footer = section._sectPr.footer
footer.text = "I am here"
我无法在docx文档中找到明确的页脚/标题说明。是否有工作来弥补这一差距?
答案 0 :(得分:0)
解决方法是:
self.document = Document('')
更改为self.document = Document('init.docx')
。