pandas is value in column in nan take from another code example
Example 1: find nan value in dataframe python
# to mark NaN column as True
df['your column name'].isnull()
Example 2: show all rows with nan for a column value pandas
df[df['col'].isnull()]