Decimal#next_toward() : next_toward() es un método de clase Decimal que devuelve el número más cercano al primer valor decimal en la dirección hacia el segundo valor decimal.
Sintaxis: Decimal.next_toward()
Parámetro: Valores decimales
Devuelve: el número más cercano al primer valor decimal en la dirección hacia el segundo valor decimal.
Código #1: Ejemplo para el método next_toward()
# Python Program explaining # next_toward() 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.next_toward() method print ("\n\nDecimal a with next_toward() method : ", a.next_toward(b)) print ("Decimal b with next_toward() method : ", b.next_toward(b))
Producción :
Decimal value a : -1 Decimal value b : 0.142857 Decimal a with next_toward() method : -0.9999999999999999999999999999 Decimal b with next_toward() method : 0.142857
Código #2: Ejemplo para el método next_toward()
# Python Program explaining # next_toward() 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.next_toward() method print ("\n\nDecimal a with next_toward() method : ", a.next_toward(b)) print ("Decimal b with next_toward() method : ", b.next_toward(b))
Producción :
Decimal value a : -3.14 Decimal value b : 3.21E+7 Decimal a with next_toward() method : -3.139999999999999999999999999 Decimal b with next_toward() 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