新的一年,小編又和大家見面啦。十分開心又和大家分享干貨了~
Word文檔相信廣大的辦公室家族并不陌生吧?今天咱們聊聊Python中一個可以用來讀寫word文檔的Python庫,編輯文檔分分鐘的事情哦~
Python DocX目前是Python OpenXML的一部分,你可以用它打開Word 2007及以后的文檔,而用它保存的文檔可以在Microsoft Office 2007/2010, Microsoft Mac Office 2008, Google Docs, OpenOffice.org 3, and Apple iWork 08中打開。
示例
創(chuàng)建一個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')
結(jié)果
開源地址:https://github.com/python-openxml/python-docx
這就是Python中編輯文檔的一個庫哦~
小編親測,編輯文檔還是挺方便的,不像markdown需要學(xué)習(xí)編輯語法,直接編輯哦~
好啦,文章就到這里啦~
學(xué)習(xí)Python過程中會遇到很多問題,可以到我們的 python學(xué)習(xí)交流群【七 三 五,九 三 四,八 四 一】,基礎(chǔ),進(jìn)階。從企業(yè)招聘人才需求 到怎么學(xué)習(xí)python,和學(xué)習(xí)什么內(nèi)容都有免費(fèi)系統(tǒng)分享。希望可以幫助你快速了解Python,學(xué)習(xí)python