how to compare all rows value of 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)