Python tiene math
una biblioteca y tiene muchas funciones al respecto. Una de esas funciones es isnan()
. Este método se utiliza para comprobar si un parámetro dado es un número válido o no.
Sintaxis: matemáticas.isnan(x)
Parámetros:
x [Obligatorio]: es cualquier tipo de datos de Python válido o cualquier número.Devoluciones: el tipo de devolución es booleano.
-> Devuelve Falso si el parámetro dado es cualquier número (positivo o negativo)
-> Devuelve Verdadero si el parámetro dado es NaN (No es un número).
Código #1:
# Python3 code to demonstrate # the working of isnan() import math # initializing the value test_int = 4 test_neg_int = -3 test_float = 0.00 # checking isnan() values # with different numbers print (math.isnan(test_int)) print (math.isnan(test_neg_int)) print (math.isnan(test_float))
Producción:
False False False
Código #2:
# Python3 code to demonstrate # the working of isnan() import math # checking isnan() values # with inbuilt numbers print (math.isnan(math.pi)) print (math.isnan(math.e)) # checking for NaN value print (math.isnan(float('nan')))
Producción:
False False True
Publicación traducida automáticamente
Artículo escrito por AKASH GUPTA 6 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA