how to check if value euqals nan python code example
Example 1: python checking if something is equal to NaN
# Test to see if it is equal to itself
def isNaN(num):
return num != num
Example 2: how to check if a string value is nan in python
if(term != term):
print("it's a nan value")