get location of unique data entries in dataframe python code example
Example 1: how to get distinct value in a column dataframe in python
df.column.unique()
Example 2: dataframe unique values in each column
for col in df:
print(df[col].unique())