python读取word

在 Python 中读取 Word 文档需要使用第三方库,比较常用的有 python-docx 和 pywin32。

python-docx 是一个用于读写 Microsoft Word 2007/2008 docx 文件的 Python 库,使用起来相对简单。下面是一个示例:

pip install python-docx# 读取文档
from docx import Document

document = Document('test.docx')
for paragraph in document.paragraphs:
    print(paragraph.text)

# 读取表格
for table in document.tables:
    for row in table.rows:
        

你可能感兴趣的:(python,word,开发语言)