Отступы кажутся довольно простыми, а терминал печатает назад правильный отступ, но тот же отступ не отражается в моем сохраненном Word docx. Я здесь что-то не так?Как правильно отступать от python-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')
сделаю, спасибо! – j4w