Hi I tired to check null values of my data frame(house) which has 81 columns but
house.isnull().sum()  display only few columns data.
MSSubClass         0
MSZoning           0
LotFrontage      259
LotArea            0
Street             0
                ... 
MoSold             0
YrSold             0
SaleType           0
SaleCondition      0
SalePrice          0
Length: 80, dtype: int64
I tired to run for loop to get the all columns in one go but couldn't do that. Appreciate your help
null_check = house.columns
for ncheck in null_check:
    print(ncheck.isnull().sum())