pandas find common rows in two dataframes code example
Example 1: findout not common values between two data frames
df = df1.merge(df2, how = 'outer' ,indicator=True).loc[lambda x : x['_merge']=='left_only']
df
Example 2: find common values in different dataframes pandas
df3.drop([column_names], inplace=True)