Pandas DataFrame Получите количество возникновения в столбце

# pandas count distinct values in column 'col'
df['col'].value_counts()
Sasso