how to compare two columns in pandas and know the difference 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)