不订购一个时,使用Openpyxl比较两个Excel文件中的数据值

时间:2019-01-17 16:33:43

标签: python excel openpyxl

我正在比较两个不同excel文件中的收入值,以评估它们是否与文件中每个员工的收入差异。我的问题是第二个文件中的名称按字母顺序排列,但第一个文件中的名称是随机排列的。

我是python的新手,我可以使用什么搜索功能创建一个列表,该列表告诉我无序列表中对应于按字母顺序排列的列表的行值。

到目前为止,这是我的代码。

import openpyxl
wb = openpyxl.load_workbook('Gehaltabrechnung_v02.xlsx')
sheet= wb['Tabelle1']
wb2 = openpyxl.load_workbook('BonusCalculation.xlsx')
sheet2= wb2['Tabelle1']
//imports files and names the workbooks

column_income1 = sheet['G']
income1_length = len(column_income1)
column_name1 = sheet['B']
name1_length = len(column_name1)
column_income2 = sheet2['I']
income2_length = len(column_income2)
column_name2 = sheet2['B']
name2_length = len(column_name2)
//specifies columns and their lengths for the two sheets

0 个答案:

没有答案