首页 > 编程语言 > 详细

python excel合并脚本

时间:2020-10-12 11:03:26      阅读:24      评论:0      收藏:0      [点我收藏+]
import pandas as pd
import os

# 文件路径
file_dir = rC:\Users\Administrator\Desktop\111

# 构建新的表格名称
new_filename = rC:\Users\Administrator\Desktop\2.xlsx
# 找到文件路径下的所有表格名称,返回列表
file_list = os.listdir(file_dir)
new_list = []

for file in file_list:
    # 重构文件路径
    file_path = os.path.join(file_dir,file)
    # 将excel转换成DataFrame
    dataframe = pd.read_excel(file_path)
    # 保存到新列表中
    new_list.append(dataframe)

# 多个DataFrame合并为一个
df = pd.concat(new_list)
# 写入到一个新excel表中
df.to_excel(new_filename, index=False)

 

python excel合并脚本

原文:https://www.cnblogs.com/lqn404/p/13800913.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!