Python | Método de cuantización decimal()

Decimal#quantize() : quantize() es un método de clase Decimal que devuelve un valor igual al primer valor decimal (redondeado) que tiene el exponente del segundo valor decimal.

Sintaxis: Decimal.quantize()

Parámetro: Valores decimales

Devuelve: un valor igual al primer valor decimal (redondeado) que tiene el exponente del segundo valor decimal.

Código #1: Ejemplo para el método quantize()

# Python Program explaining 
# quantize() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal(-1)
  
b = Decimal('0.142857')
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.quantize() method
print ("\n\nDecimal a with quantize() method : ", a.quantize(b))
  
print ("Decimal b with quantize() method : ", b.quantize(b))

Producción :

Decimal value a :  -1
Decimal value b :  0.142857


Decimal a with quantize() method :  -1.000000
Decimal b with quantize() method :  0.142857

Código #2: Ejemplo para el método quantize()

# Python Program explaining 
# quantize() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal('-3.14')
  
b = Decimal('321e + 5')
  
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.quantize() method
print ("\n\nDecimal a with quantize() method : ", a.quantize(b))
  
print ("Decimal b with quantize() method : ", b.quantize(b))

Producción :

Decimal value a :  -3.14
Decimal value b :  3.21E+7


Decimal a with quantize() method :  -0E+5
Decimal b with quantize() method :  3.21E+7

Publicación traducida automáticamente

Artículo escrito por noobestars101 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *