get columns with missing values python code example
Example 1: check for missing values by column in pandas
df.isna().any()
Example 2: number of columns with no missing values
null_cols = df.columns[df.isnull().all()]
df.drop(null_cols, axis = 1, inplace = True)