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

Python 文档操作

时间:2020-01-17 21:05:48      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:lis   div   table   har   doc   span   文档   recordset   ble   

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 )   #插入段落
document.add_paragraph(b 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(rC:\Users\zhongtao.wang\Desktop\demo.docx)  #保存文档

Python 文档操作

标签:lis   div   table   har   doc   span   文档   recordset   ble   

原文地址:https://www.cnblogs.com/wztshine/p/12207248.html

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