Which of the variables have missing values? For data science using Python in Anaconda - Jupyter

#import the library Pandas
import pandas as pd

#Put the People Charm case.csv dataset on Root Directory

#Read the dataset 
data = pd.read_csv('People Charm case.csv')

#Which of the variables have missing values?
#======================================
#   Checking for Missing Value
#======================================
print('Data Column with null Values:\n',data.isnull().sum())



Output:-