Wednesday, July 3, 2024
HomeLanguagesPythonPython | Decimal rotate() method

Python | Decimal rotate() method

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

Thapelo Manthata
I’m a desktop support specialist transitioning into a SharePoint developer role by day and Software Engineering student by night. My superpowers include customer service, coding, the Microsoft office 365 suite including SharePoint and power platform.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments