溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python3實現(xiàn)兩個Excel文件內(nèi)容比對

發(fā)布時間:2020-07-20 16:50:51 來源:網(wǎng)絡(luò) 閱讀:16320 作者:mb5b0eaab3409fa 欄目:編程語言

最近在工作中,需要人工比對大量的excel格式報表,剛好剛學(xué)了Pyhon入門基礎(chǔ)知識,想著寫個東西練練手,不但能提高代碼編寫能力,還能減輕工作量,提高工作效率。說干就干,簡單的理了邏輯。首先,將目標(biāo)表和源表的內(nèi)容分別寫入到字典中,Excel表中不確定有沒有字段是唯一值,所以選擇了行號作為key值,一行的內(nèi)容放到list中,然后從源表中取一行去目標(biāo)表中遍歷。想好之后開始敲代碼了,在代碼編寫過程中遇到很多的問題,都是遇到一個查一個?;镜谋葘δ軐崿F(xiàn)后,就想著在加個日志記錄下比對結(jié)果。寫下此文記錄下,just do it.
下面是全部代碼

#-*- coding: utf-8 -*-

#比對兩個Excel文件內(nèi)容的差異
#---------------------假設(shè)條件----------------
#1、源表和目標(biāo)表格式一致
#2、不存在合并單元格
#3、第2行開始比對
#---------------------------------------------

import xlrd
import xlwt
import os
import time;  # 引入time模塊

#往日志文件中追加內(nèi)容函數(shù)
def writeappend_logfile(filename,content):
    file=open(filename,'a') #以追加方式打開日志文件
    time_now= time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())  #系統(tǒng)時間格式化
    file.writelines(time_now+':'+content+'\n')      #寫入內(nèi)容
    file.close() #關(guān)閉文件

def read_excel(ori_path,tar_path,sub_name):#
    success=0        #匹配一致數(shù)量
    fail=0           #匹配不一致數(shù)量
    origin_xls={} #存儲源xls文件
    target_xls={} #比對的xls文件
    wb_ori=xlrd.open_workbook(ori_path) #打開原始文件
    wb_tar=xlrd.open_workbook(tar_path) #打開目標(biāo)文件
    sheet_num = len(wb_ori.sheets()) #源表子表數(shù)量
##    for sheet_i in range(sheet_num):  #excel中子頁面數(shù)量
##        sheet_ori=wb_ori.sheet_by_index(sheet_i) #通過索引值獲取源表名
##        sheet_tar=wb_tar.sheet_by_index(sheet_i) #通過索引值獲取源表名

    startime=time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())    #獲取系統(tǒng)當(dāng)前時間并格式化為格式
    print (startime,' 開始比對...')
    logname='log_'+startime[0:10]+'.log'               #截取日期年月日構(gòu)成日志文件名

    logfile=open(logname,'w')    #創(chuàng)建日志文件,如果文件存在則清空內(nèi)容,不存在則創(chuàng)建,如果需要同時批量比對多張表,可以考慮將日志文件名作為參數(shù)傳入
    logfile.writelines(startime+':【開始比對】...'+'\n')       #寫入開始時間
    logfile.close()            #關(guān)閉日志文件

    try:
        sheet_ori=wb_ori.sheet_by_name(sub_name)
        sheet_tar=wb_tar.sheet_by_name(sub_name)
        if sheet_ori.name==sheet_tar.name:
            #sheet表名
            if sheet_ori.name==sub_name:
            #先將數(shù)存入dictionary中dictionary(rows:list)
            #第一行存儲表頭
            #源表取一行數(shù)據(jù)與目標(biāo)表全表進行比對如果表中存在主鍵可以用主鍵進行索引
            #數(shù)據(jù)從excel第3行開始
                for rows in range(1,sheet_ori.nrows):
                    orign_list=sheet_ori.row_values(rows) #源表i行數(shù)據(jù)
                    target_list=sheet_tar.row_values(rows) #目標(biāo)表i行數(shù)據(jù)
                    origin_xls[rows]=orign_list     #源表寫入字典
                    target_xls[rows]=target_list    #目標(biāo)表寫入字典

                if origin_xls[1]  == target_xls[1]:
                    print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())+' 表頭一致')
                for ori_num in origin_xls:
                    flag='false'          #判斷是否一致標(biāo)志
                    for tar_num in target_xls:
                        if origin_xls[ori_num]==target_xls[tar_num]:
                            flag='true'
                            break              #如果匹配到結(jié)果退出循環(huán)
                    if flag=='true':           #匹配上結(jié)果輸出后臺日志
                        print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())+' row:%d is ok'%ori_num)
                        success+=1
                    else:                      #匹配不上將源表中行記錄寫入txt
                        print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())+' row:%d is different'%ori_num)
                        fail+=1
                        data=origin_xls[ori_num]
                        logstr='【不一致】row<'+str(ori_num)+'>:'+str(data)
                        writeappend_logfile(logname,logstr)
               # logstr='【比對完成】總記錄數(shù):'+str(ori_num)+'條,一致:'+str(success)+'條,不一致:'+str(fail)+'條'
                logstr='【比對完成】總記錄數(shù):{:d}條,一致:{:d}條,不一致:{:d}條'.format(ori_num,success,fail)
                print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())+' 【%s】比對結(jié)束'%sheet_ori.name)
                print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())+' 總記錄數(shù):%d條,一致:%d條,不一致:%d條'%(ori_num,success,fail))
                writeappend_logfile(logname,logstr)

        else:
            errmsg='【'+sub_name+'】子表名不一致'
            writeappend_logfile(logname,errmsg)
    except Exception as err:
       writeappend_logfile(logname,str(err)) #輸出異常

def main():
    pass

if __name__ == '__main__':

    read_excel(r'2.xls',1.xls','sheet1')
向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI