|
|
|
|
|
by EForEndeavour
2829 days ago
|
|
From the Python 3.7 docs (https://docs.python.org/3/library/functions.html#round): The behavior of round() for floats can be surprising: for example, round(2.675, 2) gives 2.67 instead of the expected 2.68. This is not a bug: it’s a result of the fact that most decimal fractions can’t be represented exactly as a float. |
|