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


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


Decimal#shift():shift()是一個Decimal類方法,該方法返回x,y的移位副本

用法:Decimal.shift()

參數:十進製值


返回:x,y的移位副本

代碼1:shift()方法示例

# Python Program explaining  
# shift() 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.shift() method 
print ("\n\nDecimal a with shift() method : ", a.shift(b)) 
  
print ("Decimal b with shift() method : ", b.shift(b))

輸出:

Decimal value a :  1
Decimal value b :  2


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

代碼2:shift()方法的示例

# Python Program explaining  
# shift() 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.shift() method 
print ("\n\nDecimal a with shift() method : ", a.shift(b)) 
  
print ("Decimal b with shift() method : ", b.shift(b))

輸出:

Decimal value a :  300
Decimal value b :  15


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



相關用法


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