python学习教程20-python批量合并excel工作表并实现数据透视
# Python批量合并excel工作表并实现数据透视import pandas as pd# 读取excel表df = pd.read_excel("book.xlsx", sheet_name=None)# 给sheet添加月份列,并合并多个表格df_list = []for sheet_name, df in df.items(): df["月份"] = sheet_name df_list.append(df)df_all =pd.co