I am stuck at a point in python where dataset has None values and It was working fine when there was nan in the dataset, Now it's saying argument 1 has unexpected type 'float'.
a = NaN
if (a is None):
print('a is None')
elif(a is NaN):
print('a is NaN')
elif(a is None):
print('a is Null')