Decimal#canonical():canonical()是一个Decimal类方法,该方法返回Decimal值的规范编码。
用法:Decimal.canonical()
参数:十进制值
返回:十进制值的规范编码。
代码1:canonical()方法示例
# Python Program explaining
# canonical() 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.canonical() method
print ("\n\nDecimal a with canonical() method : ", a.canonical())
print ("Decimal b with canonical() method : ", b.canonical())
输出:
Decimal value a : -1 Decimal value b : 0.142857 Decimal a with canonical() method : -1 Decimal b with canonical() method : 0.142857
代码2:canonical()方法的示例
# Python Program explaining
# canonical() 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.canonical() method
print ("\n\nDecimal a with canonical() method : ", a.canonical())
print ("Decimal b with canonical() method : ", b.canonical())
输出:
Decimal value a : -3.14 Decimal value b : 3.21E+7 Decimal a with canonical() method : -3.14 Decimal b with canonical() method : 3.21E+7
相关用法
- Python Decimal min()用法及代码示例
- Python Decimal exp()用法及代码示例
- Python Decimal max()用法及代码示例
- Python Decimal ln()用法及代码示例
- Python Decimal to_integral()用法及代码示例
- Python Decimal normalize()用法及代码示例
- Python Decimal adjusted()用法及代码示例
- Python Decimal compare()用法及代码示例
- Python Decimal to_integral_exact()用法及代码示例
- Python Decimal is_infinite()用法及代码示例
- Python Decimal is_finite()用法及代码示例
- Python Decimal is_normal()用法及代码示例
- Python Decimal is_signed()用法及代码示例
- Python Decimal to_eng_string()用法及代码示例
- Python Decimal sqrt()用法及代码示例
注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 Python | Decimal canonical() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。