finding loaction of null in dataset panadas code example
Example 1: find nan value in dataframe python
# to mark NaN column as True
df['your column name'].isnull()
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())