While creating a DataFrame or importing a CSV file, there could be some NaN values in the cells. NaN values mean "Not a Number" which generally means that there are some missing values in the cell. To deal with this type of data, you can either remove the particular row (if the number of missing values is low) or you can handle these values. For handling these values, you might need to count the number of NaN values.
To count the number of NaN values, you can use the sum() method over the isnull() method, below is the syntax:
data.isnull().sum()
pandas.isnull(obj) Method
The isnull() method returns a True or False value. Where, True means that there is some missing data and False means that the data is not null. True and False are treated as 1 and 0 respectively.
To work with MultiIndex in Python Pandas, we need to import the pandas library. Below is the syntax,
import pandas as pd
Let us understand with the help of an example.
Output:

need an explanation for this answer? contact us directly to get an explanation for this answer