Decimal#from_float():from_float()是一个Decimal类方法,该方法将float转换为精确地转换为十进制数。
用法:Decimal.from_float()
参数:十进制值
返回:converts将浮点数精确地转换为十进制数。
代码1:from_float()方法示例
# Python Program explaining
# from_float() 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.from_float() method
print ("\n\nDecimal a with from_float() method : ", a.from_float(0.1))
print ("Decimal b with from_float() method : ", b.from_float(float('nan')))
输出:
Decimal value a : -1 Decimal value b : 0.142857 Decimal a with from_float() method : 0.1000000000000000055511151231257827021181583404541015625 Decimal b with from_float() method : NaN
代码2:from_float()方法的示例
# Python Program explaining
# from_float() 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.from_float() method
print ("\n\nDecimal a with from_float() method : ", a.from_float(0.02))
print ("Decimal b with from_float() method : ", b.from_float(float('-inf')))
输出:
Decimal value a : -3.14 Decimal value b : 3.21E+7 Decimal a with from_float() method : 0.0200000000000000004163336342344337026588618755340576171875 Decimal b with from_float() method : -Infinity
相关用法
- Python Decimal max()用法及代码示例
- Python Decimal ln()用法及代码示例
- Python Decimal min()用法及代码示例
- Python Decimal exp()用法及代码示例
- Python Decimal is_qnan()用法及代码示例
- Python Decimal is_zero()用法及代码示例
- Python Decimal shift()用法及代码示例
- Python Decimal same_quantum()用法及代码示例
- Python Decimal scaleb()用法及代码示例
- Python Decimal radix()用法及代码示例
- Python Decimal copy_negate()用法及代码示例
- Python Decimal copy_abs()用法及代码示例
- Python Decimal is_snan()用法及代码示例
- Python Decimal logical_or()用法及代码示例
- Python Decimal logical_and()用法及代码示例
注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 Python | Decimal from_float() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。