compare two dataframes pandas and get same columns code example
Example: comparing two dataframe columns
comparison_column = np.where(df["col1"] == df["col2"], True, False)
comparison_column = np.where(df["col1"] == df["col2"], True, False)