标签:write nbsp pen app exce code excel port class
import openpyxl wb=openpyxl.load_workbook(r‘e:\\玩家表.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(r‘e:\\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))
标签:write nbsp pen app exce code excel port class
原文地址:https://www.cnblogs.com/yuvejxke/p/12880039.html