Answers for "t value in python is nan"

1

python test if value is np.nan

import numpy as np

mynan = np.nan
mynum = 18

print("NaN? : ", np.isnan(mynan)) # Use np.isnan() to test
print("NaN? : ", np.isnan(mynum))

# Results:
# Nan? : True
# NaN? : False
Posted by: Guest on August-25-2021
0

python3 is nan

>>> import math
>>> x = float('nan')
>>> math.isnan(x)
True
Posted by: Guest on April-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language