combined_df.to_excel(output_file, index=False, engine='openpyxl') print(f"合并后的数据已保存到 {output_file}") 例子解释 准备环境:确保安装了pandas和openpyxl库。 读取多个Excel文件: 使用os.listdir()列出指定目录下的所有文件。 对于每个文件,检查文件扩展名是否为.xlsx。 使用pd.read_excel()函数读取...