缩进看起来很简单,终端打印出正确的缩进,但相同的缩进并没有反映在我保存的 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')