vote up 6 vote down star
2

float('nan') results in a thingy simply called nan. But how do I check for it? Should be very easy, but i cannot find it.

flag

4 Answers

vote up 13 vote down check

math.isnan()

Checks if the float x is a NaN (not a number). NaNs are part of the IEEE 754 standards. Operation like but not limited to inf * 0, inf / inf or any operation involving a NaN, e.g. nan * 1, return a NaN.

New in version 2.6.

>>> import math
>>> x=float('nan')
>>> math.isnan(x)
True
>>>
link|flag
+1 Win, a built-in function for doing this. :-) – Chris Jester-Young Jun 3 at 13:26
4  
new in version 2.6 – gimel Jun 3 at 13:27
just what I was looking for! Thx :) – Jack Ha Jun 3 at 13:43
vote up 10 vote down

The usual way to test for a NaN is to see if it's equal to itself:

def isNaN(num):
    return num != num
link|flag
2  
+1: Works with Python 2.5: good! – EOL Jun 16 at 10:40
vote up 1 vote down

math.isnan()

or compare the number to itself. NaN is always != NaN, otherwise (e.g. if it is a number) the comparison should succeed.

link|flag
vote up 1 vote down

numpy.isnan(float) tells you if it's NaN or not.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.