Null vals coloumn

PHOTO EMBED

Sun May 15 2022 06:06:48 GMT+0000 (Coordinated Universal Time)

Saved by @biggusdickus

#find no of empty vlas in cols
col_names = list(df)
for col in col_names:
  print("col name: {}, null {}".format(col, df[col].isnull().sum()))
content_copyCOPY