之前分享过合并多个excel,详见
用PowerQuery合并多个execl文件
遍历文件夹中所有excel合并到一个文件中
本篇博客介绍 遍历excel中多个sheet合并数据
import xlrd
import pandas as pd
excel = r"C:\Users\Haley\Desktop\file_name.xlsx"
wb = xlrd.open_workbook(excel)
sheets = wb.sheet_names()
alldata
之前分享过合并多个excel,详见
用PowerQuery合并多个execl文件
遍历文件夹中所有excel合并到一个文件中
本篇博客介绍 遍历excel中多个sheet合并数据
import xlrd
import pandas as pd
excel = r"C:\Users\Haley\Desktop\file_name.xlsx"
wb = xlrd.open_workbook(excel)
sheets = wb.sheet_names()
alldata