checking null values in pandas dataframe code example
Example 1: knowing the sum of null value is pandas dataframe
note:df is your pandas dataframe
print(df.isnull().sum())
Example 2: check for missing values by column in pandas
df.isna().any()