質量不合格_區分excel兩列不同的值
阿新 • • 發佈:2018-02-04
turn int creat brush reat rom 分享圖片 存在 不同
A列在B列中不存在的值
# -*- coding: utf-8 -*- """ Created on Thu Jun 23 10:33:27 2016 @author: Administrator """ import xlrd fileName="省份處理.xlsx" #獲取一個excel內首頁表格 def Get_sheet1_from_oneExcel(excelFileName): wb=xlrd.open_workbook(excelFileName) sheet=wb.sheets()[0] return sheet sheet=Get_sheet1_from_oneExcel(fileName) list_columnA=sheet.col_values(0) list_columnB=sheet.col_values(1) diffrence_list=[] for i in list_columnA: if i=="": continue if i not in list_columnB: diffrence_list.append(i) ‘‘‘ diffrence_list Out[47]: [‘總局‘] ‘‘‘ print(diffrence_list)
質量不合格_區分excel兩列不同的值