How to shorten the float result I got? I only need 2 digits after the dot. Sorry I really don't know how to explain this better in English...
Thanks
|
How to shorten the float result I got? I only need 2 digits after the dot. Sorry I really don't know how to explain this better in English... Thanks |
||||
|
|
From The Floating-Point Guide's Python cheat sheet:
Using round() is the wrong thing to do, because floats are binary fractions which cannot represent decimal digits accurately. If you need to do calculations with decimal digits, use the |
|||||
|
|
If you want a number, use the
(but +1 for Michael's answer re. the If you want a string:
|
||||
|
|
|
From : Python Docs round(x[, n]) Return the floating point value x rounded to n digits after the decimal point. If n is omitted, it defaults to zero. The result is a floating point number. Values are rounded to the closest multiple of 10 to the power minus n; if two multiples are equally close, rounding is done away from 0 (so. for example, round(0.5) is 1.0 and round(-0.5) is -1.0). Note 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. See Floating Point Arithmetic: Issues and Limitations for more information. Looks like round (293.466....[, 2]) would do it, |
|||||||
|