码迷,mamicode.com
首页 > 其他好文 > 详细

pandas合并两个excel到一个excel

时间:2021-01-08 11:37:17      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:das   excel   als   writer   import   rgb   nbsp   pat   port   

import os
import pandas as pd
# 合并两个excel到一个excel的不同sheet
def merge_excel(p_path, s_path, m_path):
    writer = pd.ExcelWriter(m_path)
    if os.path.isfile(p_path):
        data1 = pd.read_excel(p_path, dtype=str)
        data1.to_excel(writer, index=False, header=True, sheet_name=YECEJ533过账结果)
    if os.path.isfile(s_path):
        data2 = pd.read_excel(s_path, dtype=str)
        data2.to_excel(writer, index=False, header=True, sheet_name=YXFI213_2查询结果)
    writer.save()
    writer.close()

merge_excel(post_file_path, search_file_path, merge_file_path)
result = 合并excel成功

 

pandas合并两个excel到一个excel

标签:das   excel   als   writer   import   rgb   nbsp   pat   port   

原文地址:https://www.cnblogs.com/lnd-blog/p/14244987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!