This code generates the columns with missing's (it is ok)
for a in data.columns:
if data[a].isnull().any() == True:
print (a)
and now I want to use the columns of the previous code to apply to the following code
data[a].isnull().sum()
but the 'a' does not save the column names with missing's, is just the name of the last column. I need to use something like b=print (a) and doing the append do a list but I can´t find the right code.