I have a pandas dataframe column which value is nan and is a float:
df['column']
I want to add a logic there,if df['column'] equal float nan then do something,the problem is I have no idea how to check if it is float nan ,is there anyway like:
if df['column'] == 'nan':
print('hi')