Decimal#is_normal() : is_normal() is a Decimal class method which checks whether the Decimal value is a normal finite number.
Syntax: Decimal.is_normal()
Parameter: Decimal values
Return: true – if the Decimal value is a normal finite number; otherwise false
Code #1 : Example for is_normal() method
from decimal import *
a = Decimal( - 1 )
b = Decimal( '-inf' )
print ( "Decimal value a : " , a)
print ( "Decimal value b : " , b)
print ( "\n\nDecimal a with is_normal() method : " , a.is_normal())
print ( "Decimal b with is_normal() method : " , b.is_normal())
|
Output :
Decimal value a : -1
Decimal value b : -Infinity
Decimal a with is_normal() method : True
Decimal b with is_normal() method : False
Code #2 : Example for is_normal() 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_normal() method : " , a.is_normal())
print ( "Decimal b with is_normal() method : " , b.is_normal())
|
Output :
Decimal value a : -3.14
Decimal value b : 3.21E+7
Decimal a with is_normal() method : True
Decimal b with is_normal() method : True
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!