我的问题是,当我应用删除线或双删除线格式并保存文件时,它不会反射(reflect)在输出文件中。
以下代码不能解决问题:
from docx import Document
document = Document()
p = document.add_paragraph()
p.add_run('Strike through the following text').strike = True
document.save('demo.docx')
最佳答案
这应该可以完成这项工作:
p.add_run('Strike through the following text').font.strike = True
strike
是 font
对象的一个属性:docs编辑
如果要更改多个字体属性,则代码应为:
sentence = p.add_run('Strike through the following text')
sentence.font.strike = True
sentence.font.name = 'Comic Sans MS'
关于python - 如何使用 python-docx 应用删除线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56269615/