当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Decimal adjusted()用法及代码示例


Decimal#adjusted():adjusted()是一种Decimal类方法,在移出系数的最右边数字直到仅保留前导数字之后,它返回调整后的指数

用法:Decimal.adjusted()

参数:十进制值


返回:在移出系数的最右边的数字直到仅剩下前导数字之后的调整指数。

代码1:adjusted()方法示例

# Python Program explaining  
# adjusted() method 
  
# loading decimal library 
from decimal import *
  
  
# Initializing a decimal value 
a = Decimal(-1) 
  
b = Decimal('0.142857') 
  
# printing Decimal values 
print ("Decimal value a : ", a) 
print ("Decimal value b : ", b) 
  
  
# Using Decimal.adjusted() method 
print ("\n\nDecimal a with adjusted() method : ", a.adjusted()) 
  
print ("Decimal b with adjusted() method : ", b.adjusted())

输出:

Decimal value a :  -1
Decimal value b :  0.142857


Decimal a with adjusted() method :  0
Decimal b with adjusted() method :  -1

代码2:adjusted()方法的示例

# Python Program explaining  
# adjusted() method 
  
# loading decimal library 
from decimal import *
  
  
# Initializing a decimal value 
a = Decimal('-3.14') 
  
b = Decimal('321e + 5') 
  
# printing Decimal values 
print ("Decimal value a : ", a) 
print ("Decimal value b : ", b) 
  
  
# Using Decimal.adjusted() method 
print ("\n\nDecimal a with adjusted() method : ", a.adjusted()) 
  
print ("Decimal b with adjusted() method : ", b.adjusted())

输出:

Decimal value a :  -3.14
Decimal value b :  3.21E+7


Decimal a with adjusted() method :  0
Decimal b with adjusted() method :  7


相关用法


注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 Python | Decimal adjusted() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。