当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python decimal.Decimal.remainder_near用法及代码示例


用法:

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.org大神的英文原创作品 decimal.Decimal.remainder_near。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。