how to compare with nan python code example
Example: check if something is nan python
import math
print math.isnan(float('NaN'))OutputTrue
print math.isnan(1.0)OutputFalse
import math
print math.isnan(float('NaN'))OutputTrue
print math.isnan(1.0)OutputFalse