print the rows with nan in one column pandas code example
Example 1: dataframe find nan rows
df[df.isnull().any(axis=1)]
Example 2: show all rows with nan for a column value pandas
df[df['col'].isnull()]
df[df.isnull().any(axis=1)]
df[df['col'].isnull()]