码迷,mamicode.com
首页 > 其他好文 > 详细

段落缩进

时间:2020-07-08 22:51:25      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:document   col   after   float   save   code   _for   docx   class   

from  docx import  Document
from  docx.shared  import Pt,Inches   #Pt指镑(int类型),Inches指英寸(float类型)


w=Document(rD:\word练习\练习.docx)
for  paragraph  in  w.paragraphs:
    if  paragraph.style.name==Normal:
        #paragraph.paragraph_format.space_before=Pt(18)
        #paragraph.paragraph_format.space_after=Pt(10)
        #paragraph.paragraph_format.left_indent=Inches(3)   #左缩进
        paragraph.paragraph_format.first_line_indent=Inches(0.3)   #Inches里面是正数就首行缩进,负数就悬浮缩进
w.save(rD:\word练习\缩进.docx)

 

段落缩进

标签:document   col   after   float   save   code   _for   docx   class   

原文地址:https://www.cnblogs.com/luckiness/p/13269584.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!