pandas dataframe only row with distinct values in column 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())