标签: 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