VOOZH about

URL: https://www.geeksforgeeks.org/python/python-decimal-normalize-method/

⇱ Python | Decimal normalize() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Decimal normalize() method

Last Updated : 17 Sep, 2019
Decimal#normalize() : normalize() is a Decimal class method which returns the simplest form of the Decimal value.
Syntax:  Decimal.normalize()

Parameter: Decimal values

Return:  the simplest form of the Decimal value. 
Code #1 : Example for normalize() method Output :
Decimal value a : -1
Decimal value b : 0.142857


Decimal a with normalize() method : -1
Decimal b with normalize() method : 0.142857

Code #2 : Example for normalize() method
Output :
Decimal value a : -3.14
Decimal value b : 3.21E+7


Decimal a with normalize() method : -3.14
Decimal b with normalize() method : 3.21E+7

Comment
Article Tags: