df all is null code example
Example 1: find nan value in dataframe python
# to mark NaN column as True
df['your column name'].isnull()
Example 2: select rows with nan pandas
df[df['Col2'].isnull()]
# to mark NaN column as True
df['your column name'].isnull()
df[df['Col2'].isnull()]