如何将一个文件夹中所有excel文件合并成一个excel文件

import pandas as pd  
import os  
  
# 指定包含Excel文件的文件夹路径  
folder_path = 'path/to/folder'  
  
# 获取文件夹中所有Excel文件的文件名  
excel_files = [f for f in os.listdir(folder_path) if f.endswith('.xlsx') or f.endswith('.xls')]  
  
# 创建一个空的DataFrame用于存储合并后的数据  
merged_df = pd.DataFrame()  
  
# 循环遍历所有Excel文件  
for file in excel_files:  
    # 读取Excel文件  
    df = pd.read_excel(os.path.join(folder_path, file))  
    # 将当前文件的数据添加到merged_df中  
    merged_df = pd.concat([merged_df, df])  
  
# 将合并后的数据保存到一个新的Excel文件中  
merged_df.to_excel('merged_data.xlsx', index=False)

你可能感兴趣的:(python数据处理,excel,python,开发语言)