Open In App

Python | Decimal to_integral_exact() method

Improve
Improve
Like Article
Like
Save
Share
Report

Decimal#to_integral_exact() : to_integral_exact() is a Decimal class method which returns the rounded value.

Syntax: Decimal.to_integral_exact()

Parameter: Decimal values

Return: the rounded integral value.

Code #1 : Example for to_integral_exact() method




# Python Program explaining 
# to_integral_exact() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal(1.898989)
  
b = Decimal(2.0)
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.to_integral_exact() method
print ("\n\nDecimal a with to_integral_exact() method : ", a.to_integral_exact())
  
print ("Decimal b with to_integral_exact() method : ", b.to_integral_exact())


Output :

Decimal value a :  1.8989890000000000380708797820261679589748382568359375
Decimal value b :  2


Decimal a with to_integral_exact() method :  2
Decimal b with to_integral_exact() method :  2

Code #2 : Example for to_integral_exact() method




# Python Program explaining 
# to_integral_exact() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal(3.14)
  
b = Decimal(15)
  
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.to_integral_exact() method
print ("\n\nDecimal a with to_integral_exact() method : ", a.to_integral_exact())
  
print ("Decimal b with to_integral_exact() method : ", b.to_integral_exact())


Output :

Decimal value a :  3.140000000000000124344978758017532527446746826171875
Decimal value b :  15


Decimal a with to_integral_exact() method :  3
Decimal b with to_integral_exact() method :  15


Last Updated : 09 Sep, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads