用法:
create_decimal(num)
從
num
創建一個新的 Decimal 實例,但使用self
作為上下文。與Decimal
構造函數不同,上下文精度、舍入方法、標誌和陷阱應用於轉換。這很有用,因為常量的精度通常高於應用程序所需的精度。另一個好處是舍入立即消除了超出當前精度的數字的意外影響。在以下示例中,使用未舍入的輸入意味著將零添加到總和可以更改結果:
>>> getcontext().prec = 3 >>> Decimal('3.4445') + Decimal('1.0023') Decimal('4.45') >>> Decimal('3.4445') + Decimal(0) + Decimal('1.0023') Decimal('4.44')
此方法實現 IBM 規範的to-number 操作。如果參數是字符串,則不允許前導或尾隨空格或下劃線。
相關用法
- Python decimal.Context.create_decimal_from_float用法及代碼示例
- Python decimal.Decimal.remainder_near用法及代碼示例
- Python decimal.Decimal.compare用法及代碼示例
- Python decimal.Decimal.exp用法及代碼示例
- Python decimal.Decimal用法及代碼示例
- Python decimal.localcontext用法及代碼示例
- Python decimal.Decimal.from_float用法及代碼示例
- Python decimal.InvalidOperation用法及代碼示例
- 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.Context.create_decimal。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。