Python |十进制移位()方法

原文:https://www.geeksforgeeks.org/python-decimal-shift-method/

Decimal#shift() : shift() 是一个 Decimal 类方法,返回 x,y 次的移位副本

语法:十进制. 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