python将多个txt文件导入一个excel的不同sheet中

代码功能:将多个txt文件导入一个excel的不同sheet中

运行代码工具:jupyter notebook

import os
import sys
import openpyxl
from openpyxl import Workbook

wb = Workbook()
dirname= 'C:/Users/LitmoonHoney/Desktop/2/'#txt所在文件夹
outputfile= 'C:/Users/LitmoonHoney/Desktop/2.xlsx'#excel文件路径,若路径下没有这个文件则会新建文件
alltxt=os.listdir(dirname)
   
def write_excel(txt_name,sheet):
    f1 = open(txt_name, 'r', encoding='utf-8')
    lines = f1.readlines()
    for line in lines:
        split_line = line.split('\t')
        sheet.append(split_line)

for inputfile in alltxt:
    sheetName=inputfile
    sheet = wb.create_sheet(sheetName)
    inputfile = dirname + inputfile
    write_excel(inputfile, sheet)
    wb.save(outputfile)
wb1 = openpyxl.load_workbook(outputfile)
del wb1['Sheet']
wb1.save(outputfile)

参考:(12条消息) 将多个txt文本写入excel的不同sheet表中_一只可爱的栗子的博客-CSDN博客

你可能感兴趣的:(python工具,python,jupyter,excel)