美文网首页
python合并多个Excel表格

python合并多个Excel表格

作者: 不定期抽疯 | 来源:发表于2018-06-14 09:11 被阅读0次

作为新手,之前写过一些的python小功能,但转眼又忘了,现在想把之前写过的常见的实用简单的小功能重新修改下,放到简书上面来。

项目需求如下:

一个文件夹下面有很多个文件夹,每个文件下里面又有多个相同结构的Excel文件,结构如下面的截图,把所有的Excel记录合并到一个表格中。

image

首先找出目标文件夹下面的所有Excel表格

import os
#获取目标文件夹下的所有Excel文件路径,并保存到file_path中
def get_all_file(raw_path):
    all_file=os.walk(raw_path)
    file_path=[]
    for i in all_file:
        if i[2]==[]:
            continue
        for each_file in i[2]:
            if '.xl' in each_file:#可能为xls或者xlsx
                a_path=os.path.join(i[0],each_file)
                file_path.append(a_path)
    return file_path

获取了所有文件路径后就是合并Excel文件。
之前本来打算用xlrd之外的模块,但发现现在的xlrd已经支持读取xlsx文件了。

import xlrd
import xlwt
def hebing_xls(file_path,save_path,all_sheet=False):
    #创建一个新的xls文件
    workbook = xlwt.Workbook(encoding='utf-8',style_compression=0)
    sheet = workbook.add_sheet("sheet1",cell_overwrite_ok = True)
    num=1#从每个文件的第二列开始复制
    for each in file_path:
        data = xlrd.open_workbook(each)
        #all_sheet 是考虑到可以一个Excel文件有多个表格,sheet1,sheet2之类的,用于辨别
        if all_sheet==True:
            sheet_num=len(data.sheet_names())
        else:
            sheet_num=1
        for index in range(sheet_num):    
            table = data.sheets()[index]
            hang=table.nrows
            lie=table.ncols
            #读取第一行,写入标题行
            if num==1:
                first_row = table.row_values(0)
                for each in first_row:
                    sheet.write(0,first_row.index(each),each) 
            #只有标题行,没有记录,则不合并
            if hang<2:
                continue
            else:
                for i in range(hang)[1:]:
                            for j in range(lie):
                                a=table.cell(i,j).value                
                                sheet.write(num,j,a)
                            num=num+1
            #print (num, 'finish')
            workbook.save(save_path)

下面附上完整代码

import xlrd
import os
import xlwt

def get_all_file(raw_path):
    all_file=os.walk(raw_path)
    file_path=[]
    for i in all_file:
        if i[2]==[]:
            continue
        for each_file in i[2]:
            if '.xl' in each_file:
                bet_path=os.path.join(i[0],each_file)
                file_path.append(bet_path)
    return file_path

def hebing_xls(file_path,save_path,all_sheet=False):
    workbook = xlwt.Workbook(encoding='utf-8',style_compression=0)
    sheet = workbook.add_sheet("sheet1",cell_overwrite_ok = True)
    num=1
    for each in file_path:
        data = xlrd.open_workbook(each)
        #all_sheet表示是否每个表格都读取
        if all_sheet==True:
            sheet_num=len(data.sheet_names())
        else:
            sheet_num=1
        for index in range(sheet_num):    
            table = data.sheets()[index]
            hang=table.nrows
            lie=table.ncols
            #读取第一行,写入标题行
            if num==1:
                first_row = table.row_values(0)
                for each in first_row:
                    sheet.write(0,first_row.index(each),each) 
            #只有标题行,没有记录,则不合并
            if hang<2:
                continue
            else:
                for i in range(hang)[1:]:
                            for j in range(lie):
                                a=table.cell(i,j).value                
                                sheet.write(num,j,a)
                            num=num+1
            #print (num, 'finish')
            workbook.save(save_path)
if __name__ == '__main__':
    raw_path=r'G:\project\data'
    save_path=r'G:\hebing.xls'
    file_path=get_all_file(raw_path)
    hebing_xls(file_path,save_path,True)
    print('end')

相关文章

  • python合并多个Excel表格

    作为新手,之前写过一些的python小功能,但转眼又忘了,现在想把之前写过的常见的实用简单的小功能重新修改下,放到...

  • Python合并多个Excel数据

    Python合并多个Excel数据 安装模块 1、找到对应的模块 http://www.python-excel...

  • openpyxl各种操作汇总(1)—— 打开关闭工作簿、工作表

    各种数据需要导入Excel?多个Excel要合并?目前,Python处理Excel文件有很多库,openpyxl算...

  • openpyxl操作Excel

    各种数据需要导入Excel?多个Excel要合并?目前,Python处理Excel文件有很多库,openpyxl算...

  • 轻松搞定多个Excel表格的纵向拼接合并

    上一篇,我们分享了Excel表格的横向拼接合并, 这一篇,我们来分享Excel表格的纵向拼接合并。 Excel表格...

  • 一句代码合并Excel表

    两个Excel中都有相同的一列,怎样依赖这列数据将两个Excel合并到一起?使用Python合并表格只要一句代码!...

  • EXCEL多文件合并

    1、利用VBA可以通过更改excel代码来合并多个文件。 详细步骤: 1)、新建一个文件夹。2)、将要合并的表格放...

  • 多个excle文件合并

    可以通过更改excel代码来合并多个文件。 详细步骤: 1、新建一个文件夹。 2、将要合并的表格放到里面。 3、新...

  • 顺来容易逆来难

    之前用邮件合并的方式可以把Excel中的内容插入到Word中,但是如果想把Word表格特别是多个Word表格中指定...

  • python合并多个EXCEL表

    一、背景 在日常工作中经常回用到数据分析与统计工作,而在实施数据分析之前,最为最要的就是数据的搜集、整理工作。这里...

网友评论

      本文标题:python合并多个Excel表格

      本文链接:https://www.haomeiwen.com/subject/ndseeftx.html