python读取txt文件内容写入到excel表格中

import xlwt
import os


class TxtToExcel(object):
    def __init__(self, path):
        self.path = path
        self.workbook = xlwt.Workbook()
        self.worksheet = self.workbook.add_sheet('mybook', cell_overwrite_ok=True)

    def read_content(self, file):
        with open(file, 'r', encoding='utf-8') as f:
            return f.readlines()

    def file_list(self):
        return os.listdir(self.path)

    def write_to_excel(self, row, content):
        content_list = content.split(" ")
        for con in content_list:
            self.worksheet.write(row, content_list.index(con), con)
            # self.workbook.save('a.xls')

    def get_file_path_list(self):
        file_path_list = [os.path.join(self.path, file) for file in self.file_list()]
        # content = []
        # for file in file_path_list:
        #     content.extend(self.read_content(file))

        gen = (self.read_content(file) for file in file_path_list)
        index = 0
        for g in gen:
            for i in g:
                self.write_to_excel(index + 1, i)
                index += 1
            self.workbook.save('a.xls')

        # for c in content:
        #     self.write_to_excel(content.index(c)+1, c)


if __name__ == '__main__':
    path = r"E:\qqq\test_excel"
    TxtToExcel(path).get_file_path_list()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

大帅不是我

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值