當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Decimal rotate()用法及代碼示例


Decimal#rotate():rotate()是一個Decimal類方法,該方法返回x,y次的旋轉副本

用法: Decimal.rotate()

參數:  Decimal values

返回: the rotated copy of x, y times

代碼1:示例rotate()方法

# 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))

輸出:


Decimal value a: 1
Decimal value b: 2


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

代碼2: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))

輸出:

Decimal value a: 300
Decimal value b: 15


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



相關用法


注:本文由純淨天空篩選整理自noobestars101大神的英文原創作品 Python | Decimal rotate() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。