python处理word的方法

安装

python中处理word对象需要用到python-docx库,安装如下:

pip install python-docx # 安装命令

使用


from docx import Document
from docx.shared import Inches

document = Document()

document.add_heading('Document Title', 0)  #插入标题

p = document.add_paragraph('A plain paragraph having some ')   #插入段落
p.add_run('bold').bold = True
p.add_run(' and some ')
p.add_run('italic.').italic = True

document.add_heading('Heading, level 1', level=1)
document.add_paragraph('Intense quote', style='IntenseQuote')

document.add_paragraph('first item in unordered list', style='ListBullet')

document.add_paragraph('first item in ordered list', style='ListNumber')

document.add_picture('figure.jpg', width=Inches(1.25)) #插入图片

table = document.add_table(rows=1, cols=3) #插入表格
hdr_cells = table.rows[0].cells
hdr_cells[0].text = 'Qty'
hdr_cells[1].text = 'Id'
hdr_cells[2].text = 'Desc'

recordset=[{'qty':10,'id':5,'desc':'458'},{'qty':10,'id':5,'desc':'458'},{'qty':10,'id':5,'desc':'458'}]
for item in recordset:
    row_cells = table.add_row().cells
    row_cells[0].text = str(item['qty'])
    row_cells[1].text = str(item['id'])
    row_cells[2].text = item['desc']

document.add_page_break()

document.save('demo.docx')  #‘保存文档

效果如下:
python处理word的方法_第1张图片

参考:
https://blog.csdn.net/wcg541/article/details/100999756
https://www.cnblogs.com/geek-arking/p/9300617.html

你可能感兴趣的:(python)