Python匹配三个不同电子表格中的3列

时间:2018-12-12 06:41:18

标签: python

如何在python中匹配三个电子表格列并输出不匹配的项目。我一直在使用下面的代码来匹配两个列。

df3 = df1[~df1.REFERENCE.isin(df2.REFERENCE)].append(df2[~df2.REFERENCE.isin(df1.REFERENCE)], ignore_index=True,sort=True)

enter image description here

enter image description here

0 个答案:

没有答案