Identifikasi nol dan nan python

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