# Count total missing values in a dataframe df.isnull().sum().sum() # Gives a integer value
df1 = df[df.isna().any(axis=1)]
#Retreieve boolean values of whether or not the given cells of a dataframe are #null df.isnull()