SyntaxFix
Write A Post
Hire A Developer
Questions
Both of these should work:
df.isnull().sum() df.isna().sum()
DataFrame methods isna() or isnull() are completely identical.
isna()
isnull()
Note: Empty strings '' is considered as False (not considered NA)
''