find distinct values of a column in pandas code example
Example 1: how to get distinct value in a column dataframe in python
df.column.unique()
Example 2: distinct rows in this DataFrame
# distinct rows in this DataFrame
df.distinct().count()
# 2