python 后缀doc文件的读取

文件内容如图:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from win32com import client as wc<br>from docx import Document
 
def word_convert():
    account_list = []
    new_file_name = 'C:/名单2.docx'
    file_exists = os.path.exists(new_file_name)
    if not file_exists:
        word = wc.Dispatch('Word.Application')
        doc = word.Documents.Open('C:/名单.doc')
 
        doc.SaveAs('C:/名单2.docx', 12, False, "", True, "", False, False, False,False# 转化后路径下的文件
        doc.Close()
        word.Quit()
    document = Document(new_file_name)
    tables = document.tables
    for table in tables:
        # 行列个数
        row_count = len(table.rows)
        col_count = len(table.columns)
        for i in range(row_count):
            row = table.rows[i].cells
            if i == 0:
                continue
            for j in range(col_count):
                value_text = row[j].text
                if j == 1:
                    account_list.append(value_text) # 我这里获取的是第二列
    return account_list

  

 先把 doc 文件转换为 docx 读取

posted @   qukaige  阅读(6293)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
点击右上角即可分享
微信分享提示