python创建一个word文档并写入内容
Posted shunguo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python创建一个word文档并写入内容相关的知识,希望对你有一定的参考价值。
import docx
doc2=docx.Document()#创建一个Document对象
doc2.add_paragraph(‘time‘)#增加一个paragraph
#插入有序列表,段落的前面会有序号123
doc2.add_paragraph(‘把冰箱门打开‘,style=‘List Number‘)
doc2.add_paragraph(‘把大象装进去‘,style=‘List Number‘)
doc2.add_paragraph(‘把冰箱门关上‘,style=‘List Number‘)
#插入无序列表,段落的前面没有序号
doc2.add_paragraph(‘把冰箱门打开‘,style=‘List Bullet‘)
doc2.add_paragraph(‘把大象装进去‘,style=‘List Bullet‘)
doc2.add_paragraph(‘把冰箱门关上‘,style=‘List Bullet‘)
#插入一个6行6列的表格
table=doc2.add_table(rows=6,cols=6,style=‘Table Grid‘)
for i in range(0,6):
for j in range(0,6):
table.cell(i,j).text="第i行j列".format(i=i+1,j=j+1)
#插入照片
doc2.add_picture(‘FLAMING MOUNTAIN.JPG‘,width=docx.shared.Inches(5))
doc2.save(‘2.docx‘)#保存文档
#若有侵权请联系我删除
以上是关于python创建一个word文档并写入内容的主要内容,如果未能解决你的问题,请参考以下文章
一篇就够,python 操作 word 文档,使用 python-docx 落地实现,写入篇
读取word文档并提取和写入数据(基于python 3.6)