calculate how many time a columns name appears in a row python code example
Example 1: pandas count specific value in column
(df[education]=='9th').sum()
Example 2: how to count special values in data in python
df['sex'].value_counts(normalize=True)