I want to select rows which have multiple columns(4 in the following example) as null values. I have used the following code:
data[(data['relevent_experience'].isnull())&data['education_level'].isnull())&data['major_disciplne'].isnull())&data['relevent_experience'].isnull())]
This is a very complicated code. Is there a cleaner way to do the same thing?