In R I can quickly see a count of missing data using the summary command, but the equivalent pandas DataFrame method, describe
summary
pandas
describe
As a tiny addition, to get percentage missing by DataFrame column, combining @Jeff and @userS's answers above gets you:
df.isnull().sum()/len(df)*100