isna() / isnull() (Pandas)

df.isna() returns a boolean DataFrame the same shape as the original, marking True wherever a value is missing (NaN, NaT, or None). isnull() is an exact…