小伙发现了Python中编写word文档的库,编辑文字方便多了

新的一年,小编又和大家见面啦。十分开心又和大家分享干货了~

Word文档相信广大的办公室家族并不陌生吧?今天咱们聊聊Python中一个可以用来读写word文档的Python库,编辑文档分分钟的事情哦~

小伙发现了Python中编写word文档的库,编辑文字方便多了_第1张图片

小伙发现了Python中编写word文档的库,编辑文字方便多了_第2张图片

 

Python DocX目前是Python OpenXML的一部分,你可以用它打开Word 2007及以后的文档,而用它保存的文档可以在Microsoft Office 2007/2010, Microsoft Mac Office 2008, Google Docs, OpenOffice.org 3, and Apple iWork 08中打开。

示例

创建一个word文档

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 ')
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文档的库,编辑文字方便多了_第3张图片

 

开源地址:https://github.com/python-openxml/python-docx

这就是Python中编辑文档的一个库哦~

小编亲测,编辑文档还是挺方便的,不像markdown需要学习编辑语法,直接编辑哦~

好啦,文章就到这里啦~

你可能感兴趣的:(python,Python,Python库)