pandas get whcih column have more distinct values code example
Example 1: how to get distinct value in a column dataframe in python
df.column.unique()
Example 2: pandas count distinct values in a column
Series.value_counts(self, normalize=False, sort=True, ascending=False, bins=None, dropna=True)