加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python-docx库的使用

发布时间:2020-12-20 12:48:45 所属栏目:Python 来源:网络整理
导读:from docx import Documentfrom docx.shared import Inchesdocument = Document() document.add_heading('Document Title',0)p = document.add_paragraph('A plain paragraph having some ')p.add_run('bold').bold = Truep.add_run(' and some ')p.add_run(
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='Intense Quote')

document.add_paragraph(
    'first item in unordered list',style='List Bullet'
)
document.add_paragraph(
    'first item in ordered list',style='List Number'
)

document.add_picture('monty-truth.png',width=Inches(1.25))

records = (
    (3,'101','Spam'),(7,'422','Eggs'),(4,'631','Spam,spam,eggs,and spam')
)

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'
for qty,id,desc in records:
    row_cells = table.add_row().cells
    row_cells[0].text = str(qty)
    row_cells[1].text = id
    row_cells[2].text = desc

document.add_page_break()

document.save('demo.docx')

来源于:https://python-docx.readthedocs.io/en/latest/

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读