用法:
remainder_near(other, context=None)
返回將
self
除以other
的餘數。這與self % other
的不同之處在於選擇餘數的符號以使其絕對值最小化。更準確地說,返回值為self - n * other
其中n
是最接近self / other
精確值的整數,如果兩個整數相等,則選擇偶數。如果結果為零,則其符號將是
self
的符號。>>> Decimal(18).remainder_near(Decimal(10)) Decimal('-2') >>> Decimal(25).remainder_near(Decimal(10)) Decimal('5') >>> Decimal(35).remainder_near(Decimal(10)) Decimal('-5')
相關用法
- Python decimal.Decimal.compare用法及代碼示例
- Python decimal.Decimal.exp用法及代碼示例
- Python decimal.Decimal.from_float用法及代碼示例
- 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.remainder_near。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。