Python 文档操作
Posted wztshine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 文档操作相关的知识,希望对你有一定的参考价值。
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(r‘C:Userszhongtao.wangDesktopdemo.docx‘) #保存文档
以上是关于Python 文档操作的主要内容,如果未能解决你的问题,请参考以下文章
如何在 MS Word 文档中显示代码片段,因为它在 *** 中显示(滚动条和灰色背景)
[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段