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

比对两个Excel列中的元素

时间:2020-05-13 10:22:28      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:write   nbsp   pen   app   exce   code   excel   port   class   

import openpyxl
wb=openpyxl.load_workbook(re:\\玩家表.xlsx)
sheet=wb[Worksheet]
row_max=sheet.max_row
hw_ls=[]

for i  in  range(2,row_max+1):
    hw_ls.append(int(sheet.cell(row=i,column=1).value))


wb=openpyxl.load_workbook(re:\\d2.xlsx)
sheet=wb[Sheet1]
row_max=sheet.max_row
gx_ls=[]

for i  in  range(2,row_max+1):
    gx_ls.append(int(sheet.cell(row=i,column=1).value))
    pass
ls=[]
for j in gx_ls:
    if j in hw_ls:
        pass
    else:
        ls.append(j)
f=open(res1.txt,w)
f.write(str(ls))

 

比对两个Excel列中的元素

标签:write   nbsp   pen   app   exce   code   excel   port   class   

原文地址:https://www.cnblogs.com/yuvejxke/p/12880039.html

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