小编j4w*_*j4w的帖子

如何使用 python-docx 正确缩进?

缩进看起来非常简单,终端会打印回正确的缩进,但相同的缩进没有反映在我保存的 Word docx 中。
我在这里做错了什么吗?

from docx import Document
from docx.shared import Inches
    
worddoc = Document()
paragraph = worddoc.add_paragraph('Left Indent Test')
paragraph.left_indent = Inches(.25)
print(paragraph.left_indent.inches)
    
worddoc.save('left_indent.docx')
Run Code Online (Sandbox Code Playgroud)

python python-docx

4
推荐指数
1
解决办法
8852
查看次数

标签 统计

python ×1

python-docx ×1