show column values excluding nan in pandas code example
Example 1: find nan values in a column pandas
df.isnull().values.any()
Example 2: show all rows with nan for a column value pandas
df[df['col'].isnull()]
df.isnull().values.any()
df[df['col'].isnull()]