如何使用python-docx应用删除线

时间:2019-05-23 06:56:07

标签: python python-docx

我的问题是,当我应用删除线或双删除线格式并保存文件时,它不会反映在输出文件中。

以下代码不能解决问题:

from docx import Document
document = Document()
p = document.add_paragraph()
p.add_run('Strike through the following text').strike = True
document.save('demo.docx')

1 个答案:

答案 0 :(得分:4)

这应该可以完成工作:

p.add_run('Strike through the following text').font.strike = True

strikefont对象的属性:docs

编辑

如果要更改多个字体属性,则代码应为:

sentence = p.add_run('Strike through the following text')
sentence.font.strike = True
sentence.font.name = 'Comic Sans MS'