码迷,mamicode.com
首页 > 编程语言 > 详细

python对word的操作

时间:2018-04-17 19:46:24      阅读:343      评论:0      收藏:0      [点我收藏+]

标签:1.2   sha   recordset   tle   let   title   ext   table   having   

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(monty-truth.png, 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
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.2   sha   recordset   tle   let   title   ext   table   having   

原文地址:https://www.cnblogs.com/wangzhisdu/p/8868293.html

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