Decimal#canonical() : canonical() is a Decimal class method which returns the canonical encoding of the Decimal value.
Syntax: Decimal.canonical()
Parameter: Decimal values
Return: the canonical encoding of the Decimal value.
Code #1 : Example for canonical() method
from decimal import *
a = Decimal( - 1 )
b = Decimal( '0.142857' )
print ( "Decimal value a : " , a)
print ( "Decimal value b : " , b)
print ( "\n\nDecimal a with canonical() method : " , a.canonical())
print ( "Decimal b with canonical() method : " , b.canonical())
|
Output :
Decimal value a : -1
Decimal value b : 0.142857
Decimal a with canonical() method : -1
Decimal b with canonical() method : 0.142857
Code #2 : Example for canonical() 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 canonical() method : " , a.canonical())
print ( "Decimal b with canonical() method : " , b.canonical())
|
Output :
Decimal value a : -3.14
Decimal value b : 3.21E+7
Decimal a with canonical() method : -3.14
Decimal b with canonical() method : 3.21E+7
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