我正在使用 Python docx-mailmerge 库来创建一个 docx。但有些事情不像我的希望。
我的代码:
from mailmerge import MailMerge
template='example.docx'
document_1 = MailMerge(template)
document_1.merge(misscount='>>> CSS Network Latencies\n CRS-4678: Successful get misscount 30 for Cluster Synchronization Services.')
document_1.write('aaa.docx')
docx 中的输出是:
但我的希望是:
我希望第二行以 4 个空格开头。我应该怎么办?