search column for null pandas code example
Example 1: find nan values in a column pandas
df['your column name'].isnull().sum()
Example 2: knowing the sum null values in a specific row in pandas dataframe
note:df is syour dataframe
print(df['emp_title'].isnull().sum())