Decimal Functions in Python | Set 1
Last Updated :
22 Jan, 2022
Python in its definition provides certain methods to perform faster decimal floating point arithmetic using the module “decimal”.
Important operations on Decimals
1. sqrt() :- This function computes the square root of the decimal number.
2. exp() :- This function returns the e^x (exponent) of the decimal number.
Python3
import decimal
a = decimal.Decimal( 4.5 ).exp()
b = decimal.Decimal( 4.5 ).sqrt()
print ( "The exponent of decimal number is : " ,end = "")
print (a)
print ( "The square root of decimal number is : " ,end = "")
print (b)
|
Output:
The exponent of decimal number is : 90.01713130052181355011545675
The square root of decimal number is : 2.121320343559642573202533086
3. ln() :- This function is used to compute natural logarithm of the decimal number.
4. log10() :- This function is used to compute log(base 10) of a decimal number.
Python3
import decimal
a = decimal.Decimal( 4.5 ).ln()
b = decimal.Decimal( 4.5 ).log10()
print ( "The natural logarithm of decimal number is : " ,end = "")
print (a)
print ( "The log(base 10) of decimal number is : " ,end = "")
print (b)
|
Output:
The natural logarithm of decimal number is : 1.504077396776274073373258352
The log(base 10) of decimal number is : 0.6532125137753436793763169118
5. as_tuple() :- Returns the decimal number as tuple containing 3 arguments, sign(0 for +, 1 for -), digits and exponent value.
6. fma(a,b) :- This “fma” stands for fused multiply and add. It computes (num*a)+b from the numbers in argument. No rounding of (num*a) takes place in this function.
Example :
decimal.Decimal(5).fma(2,3) --> (5*2)+3 = 13
Python3
import decimal
a = decimal.Decimal( - 4.5 ).as_tuple()
b = decimal.Decimal( 5 ).fma( 2 , 3 )
print ( "The tuple form of decimal number is : " ,end = "")
print (a)
print ( "The fused multiply and addition of decimal number is : " ,end = "")
print (b)
|
Output:
The tuple form of decimal number is : DecimalTuple(sign=1, digits=(4, 5), exponent=-1)
The fused multiply and addition of decimal number is : 13
7. compare() :- This function is used to compare decimal numbers. Returns 1 if 1st Decimal argument is greater than 2nd, -1 if 1st Decimal argument is smaller than 2nd and 0 if both are equal.
8. compare_total_mag() :- Compares the total magnitude of decimal numbers. Returns 1 if 1st Decimal argument is greater than 2nd(ignoring sign), -1 if 1st Decimal argument is smaller than 2nd(ignoring sign) and 0 if both are equal(ignoring sign).
Python3
import decimal
a = decimal.Decimal( 9.53 )
b = decimal.Decimal( - 9.56 )
print ( "The result of comparison using compare() is : " ,end = "")
print (a.compare(b))
print ( "The result of comparison using compare_total_mag() is : " ,end = "")
print (a.compare_total_mag(b))
|
Output:
The result of comparison using compare() is : 1
The result of comparison using compare_total_mag() is : -1
9. copy_abs() :- This function prints the absolute value of decimal argument.
10. copy_negate() :- This function prints the negation of decimal argument.
11. copy_sign() :- This function prints the first argument by copying the sign from 2nd argument.
Python3
import decimal
a = decimal.Decimal( 9.53 )
b = decimal.Decimal( - 9.56 )
print ( "The absolute value using copy_abs() is : " ,end = "")
print (b.copy_abs())
print ( "The negated value using copy_negate() is : " ,end = "")
print (b.copy_negate())
print ( "The sign effected value using copy_sign() is : " ,end = "")
print (a.copy_sign(b))
|
Output:
The absolute value using copy_abs() is : 9.5600000000000004973799150320701301097869873046875
The negated value using copy_negate() is : 9.5600000000000004973799150320701301097869873046875
The sign effected value using copy_sign() is : -9.5299999999999993605115378159098327159881591796875
12. max() :- This function computes the maximum of two decimal numbers.
13. min() :- This function computes the minimum of two decimal numbers.
Python3
import decimal
a = decimal.Decimal( 9.53 )
b = decimal.Decimal( 7.43 )
print ( "The minimum of two numbers is : " ,end = "")
print (a. min (b))
print ( "The maximum of two numbers is : " ,end = "")
print (a. max (b))
|
Output:
The minimum of two numbers is : 7.429999999999999715782905696
The maximum of two numbers is : 9.529999999999999360511537816
Please Login to comment...