compare each value of a column in pandas dataframe 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)