前面實現了用代碼修改Excel中的單元格值、字體、顏色等格式,還有一些場景需要對word進行處理。
01 準備
Python/ target=_blank class=infotextkey>Python 是一種通用編程語言,也可以用于處理 Microsoft Word 文件。在本文中,我將向你介紹如何使用 Python 和 python-docx 庫讀取、寫入和操作 Word 文件。1、安裝
pip install python-docx
02 讀寫
1、讀取 使用 python-docx 庫可以輕松讀取 Word 文件。以下代碼演示了如何讀取一個名為 'document.docx' 的 Word 文件并將其存儲在一個名為 doc 的 python-docx 文檔對象中:
import docx
doc = docx.Document('document.docx')
此代碼中,首先導入 python-docx 庫并將其重命名為 docx。然后,使用 docx.Document() 函數讀取 'document.docx' 文件并將其存儲在 doc 文檔對象中。
2、寫入 與讀取 Word 文件類似,使用 python-docx 庫也可以輕松地將數據寫入 Word 文件。以下代碼演示了如何創建一個新的 Word 文件并將文本寫入其中:
import docx
doc = docx.Document()
doc.add_paragraph('Hello, world!')
doc.save('output.docx')
使用 doc.add_paragraph() 函數將一個名為 'Hello, world!' 的段落添加到文檔中。使用 doc.save() 函數將文檔保存為 'output.docx' 文件。
03 操作
1、修改文本 以下代碼演示了如何使用 python-docx 修改文檔中的第一個段落:
paragraph = doc.paragraphs[0]
paragraph.text = 'New text'
paragraph.style = 'Heading 1'
doc.save('output.docx')
使用 doc.paragraphs[0] 訪問文檔中的第一個段落并將其存儲在變量 paragraph 中。接下來使用 paragraph.text = 'New text' 將段落文本修改為 'New text'。使用 paragraph.style = 'Heading 1' 將段落樣式修改為 'Heading 1'。使用 doc.save() 函數將修改后的文檔保存為 'output.docx' 文件。
2、修改文本 使用 python-docx 庫可以輕松地修改 Word 文檔的格式
from docx import Document
from docx.shared import Pt
# 打開文檔
doc = Document('example.docx')
# 獲取第一個段落并設置字體大小為12磅
paragraph = doc.paragraphs[0]
paragraph.style.font.size = Pt(12)
首先導入 Document 和 Pt 類。Document 類表示 Word 文檔,Pt 類用于指定字體大小。設置段落的字體大小為 12 磅,可以使用類似的方法來修改文檔中的其他格式,例如字體顏色、字體類型和行距等。
03 結論
在本文中,介紹了如何使用 Python 和 python-docx 庫讀取、寫入和操作 Word 文件。