Last active
December 14, 2015 05:49
-
-
Save chirag-v/5037740 to your computer and use it in GitHub Desktop.
isnan function in python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math as m | |
x=float('nan') | |
m.isnan(x) # True | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment