In this task, you are going to practice working with a dataset containing information about students. The dataset has three columns: year represents a student's year of study, degree represents their degree program, and age represents their age.
You must perform the following sequence of steps:
Load the data into a
pandasDataFrame.Count the number of columns in the DataFrame that contain missing values using appropriate
pandasmethods. The methods.isnull(),.any(), and.sum()will be particularly useful for this task.Insert the result, which is the count of columns containing missing values, in the answer section.