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
相关用法
- Python Decimal max()用法及代码示例
- Python Decimal ln()用法及代码示例
- Python Decimal exp()用法及代码示例
- Python Decimal min()用法及代码示例
- Python Decimal same_quantum()用法及代码示例
- Python Decimal scaleb()用法及代码示例
- Python Decimal radix()用法及代码示例
- Python Decimal is_zero()用法及代码示例
- Python Decimal copy_abs()用法及代码示例
- Python Decimal is_snan()用法及代码示例
- Python Decimal logical_or()用法及代码示例
- Python Decimal logical_and()用法及代码示例
- Python log10()用法及代码示例
- Python Decimal min_mag()用法及代码示例
- Python Decimal to_integral_value()用法及代码示例
注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 Python | Decimal shift() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。