用法:
from_float(f)
準確地將浮點數轉換為十進製數的類方法。
注意
Decimal.from_float(0.1)
與Decimal(‘0.1’)
不同。由於 0.1 在二進製浮點中不能精確表示,因此該值存儲為最接近的可表示值0x1.999999999999ap-4
。十進製的等效值為0.1000000000000000055511151231257827021181583404541015625
。>>> Decimal.from_float(0.1) Decimal('0.1000000000000000055511151231257827021181583404541015625') >>> Decimal.from_float(float('nan')) Decimal('NaN') >>> Decimal.from_float(float('inf')) Decimal('Infinity') >>> Decimal.from_float(float('-inf')) Decimal('-Infinity')
3.1 版中的新函數。
相關用法
- Python decimal.Decimal.remainder_near用法及代碼示例
- Python decimal.Decimal.compare用法及代碼示例
- Python decimal.Decimal.exp用法及代碼示例
- Python decimal.Decimal用法及代碼示例
- Python decimal.Context.create_decimal_from_float用法及代碼示例
- Python decimal.localcontext用法及代碼示例
- Python decimal.InvalidOperation用法及代碼示例
- Python decimal.Context.create_decimal用法及代碼示例
- Python OpenCV destroyAllWindows()用法及代碼示例
- Python Tkinter destroy()用法及代碼示例
- Python delattr() and del()用法及代碼示例
- Python delattr()用法及代碼示例
- Python degrees() and radians()用法及代碼示例
- Python dask.dataframe.Series.apply用法及代碼示例
- Python dask.dataframe.to_records用法及代碼示例
- Python distributed.protocol.serialize.register_generic用法及代碼示例
- Python dask.dataframe.DataFrame.applymap用法及代碼示例
- Python dask.dataframe.Series.clip用法及代碼示例
- Python dask.array.stats.ttest_ind用法及代碼示例
- Python dict()用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 decimal.Decimal.from_float。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。