Decimal#is_qnan() : is_qnan() is a Decimal class method which checks whether the Decimal value is quite NaN value.
Syntax: Decimal.is_qnan()
Parameter: Decimal values
Return: true – if the Decimal value is quite NaN value; otherwise false
Code #1 : Example for is_qnan() method
from decimal import *
a = Decimal( - 1 )
b = Decimal( 'nan' )
print ( "Decimal value a : " , a)
print ( "Decimal value b : " , b)
print ( "\n\nDecimal a with is_qnan() method : " , a.is_qnan())
print ( "Decimal b with is_qnan() method : " , b.is_qnan())
|
Output :
Decimal value a : -1
Decimal value b : NaN
Decimal a with is_qnan() method : False
Decimal b with is_qnan() method : True
Code #2 : Example for is_qnan() method
from decimal import *
a = Decimal( '-3.14' )
b = Decimal( '321e+5' )
print ( "Decimal value a : " , a)
print ( "Decimal value b : " , b)
print ( "\n\nDecimal a with is_qnan() method : " , a.is_qnan())
print ( "Decimal b with is_qnan() method : " , b.is_qnan())
|
Output :
Decimal value a : -3.14
Decimal value b : 3.21E+7
Decimal a with is_qnan() method : False
Decimal b with is_qnan() method : False
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
05 Sep, 2019
Like Article
Save Article