How to count the number of Null values in a Pandas dataframe column?

We can find the number of Null values in a column using two built in methods, .isna() and .sum()

Example