Identifier Null et Nan Python

import pandas as pd
pd.isnull(df.columnName).sum()
pd.notnull(df.columnName).sum()
JJSSEECC