get rows with null values pandas code example
Example 1: python count null values in dataframe
# Count total missing values in a dataframe
df.isnull().sum().sum()
# Gives a integer value
Example 2: select rows with nan pandas
df[df['Col2'].isnull()]