gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-30 02:51:21 29 4
gpt4 key购买 nike

我的问题是,当我应用删除线或双删除线格式并保存文件时,它没有反射(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

strikefont 对象的属性: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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com