该库中目前尚无此方法。但是,我发现通过对齐现有文档中的文本,然后使用python-docx打开它,您可以简单地编辑文本并将保留其格式。
from docx import document
document = Document('template.docx')
# This just grabs the first paragraph, code assumes you've already applied formatting.
document.paragraphs[0].text = "Example Text"
document.save('output.docx')