Decimal#rotate() : rotate() is a Decimal class method which returns the rotated copy of x, y times
Syntax: Decimal.rotate() Parameter: Decimal values Return: the rotated copy of x, y times
Code #1 : Example for rotate() method
# 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)) |
Output :
Decimal value a : 1 Decimal value b : 2 Decimal a with rotate() method : 100 Decimal b with rotate() method : 200
Code #2 : Example for rotate() method
# 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)) |
Output :
Decimal value a : 300 Decimal value b : 15 Decimal a with rotate() method : 300000000000000000 Decimal b with rotate() method : 15000000000000000
