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

Decimal#rotate() : rotate() es un método de clase Decimal que devuelve la copia rotada de x, y veces

Syntax:  Decimal.rotate()

Parameter:  Decimal values

Return:  the rotated copy of x, y times

Código #1: Ejemplo de rotate()método

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

Producción :

Decimal value a :  1
Decimal value b :  2


Decimal a with rotate() method :  100
Decimal b with rotate() method :  200

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

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

Producción :

Decimal value a :  300
Decimal value b :  15


Decimal a with rotate() method :  300000000000000000
Decimal b with rotate() method :  15000000000000000

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 *