Python Seleccionar columnas sin NA

df = df[df.columns[~df.isnull().all()]]
Lazy Lion