向指定段落添加内容

>>> c=Document(r'F:\word练习\指定段落.docx')
>>> c

>>> len(c.paragraphs)
5
>>> w=c.paragraphs[1]
>>> w

>>> w.insert_paragraph_before('这是我的第二段')

>>> c.save(r'F:\word练习\段落定位.docx')  

 

你可能感兴趣的:(向指定段落添加内容)