python 读取doc文档,文档里有表格

发布时间:2024年01月10日
安装库
pip install pywin32 -i https://pypi.tuna.tsinghua.edu.cn/simple
文档内容截图

doc文档

在这里插入图片描述

案例代码
# 文件路径
file_path = r"./d5e2f3f682cadf3fce0367e0ed3de309.doc"

import win32com.client


def read_doc(file_path):
    word = win32com.client.Dispatch("Word.Application")
    doc = word.Documents.Open(file_path)
    tables = []
    for table in doc.Tables:
        table_data = []
        for row in table.Rows:
            row_data = []
            for cell in row.Cells:
                row_data.append(cell.Range.Text.strip())
            table_data.append(row_data)
        tables.append(table_data)
    doc.Close()
    word.Quit()
    return tables


tables = read_doc(file_path)
for table in tables:
    for row in table:
        print(row)
运行结果

在这里插入图片描述

文章来源:https://blog.csdn.net/weixin_42219511/article/details/135451418
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。