Pandas DataFrame Dapatkan jumlah kejadian di kolom

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