為什麼浮點數捨入的結果令人驚訝?

Linda Hamilton
發布: 2024-10-17 15:49:03
原創
823 人瀏覽過

Why Does Float Rounding Surprise with Even Results?

Half Float Rounding-Up Dilemma

Encountering an oddity with the round() function? Observe the following behavior:

for i in range(1, 15, 2):
    n = i / 2
    print(n, "=>", round(n))
登入後複製

You might expect the floating values to consistently round up, yet they surprisingly round to the nearest even number.

Reason Behind the Behavior

The documentation for Numeric Types clarifies this peculiar behavior with the statement "round(x[, n]) x rounded to n digits, rounding half to even." This is known as bankers rounding. Instead of persistent rounding up or down, which would amplify rounding errors, bankers rounding compensates by targeting the closest even number.

Solution for Controlled Rounding

To handle rounding precisely, leverage the decimal module. This module equips you with options to specify specific rounding strategies. For instance, to round up from half:

>>> from decimal import localcontext, Decimal, ROUND_HALF_UP
>>> with localcontext() as ctx:
...     ctx.rounding = ROUND_HALF_UP
...     for i in range(1, 15, 2):
...         n = Decimal(i) / 2
...         print(n, '=>', n.to_integral_value())
...
0.5 => 1
1.5 => 2
2.5 => 3
3.5 => 4
4.5 => 5
5.5 => 6
6.5 => 7
登入後複製

以上是為什麼浮點數捨入的結果令人驚訝?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!