2010-02-24 87 views

回答

3

的部分如果要比較兩個浮點數,你可以在那裏小量是你的精度要求上abs(a-b) < epsilon比較。

6

輪(a_float,4)

>>> help(round) 
Help on built-in function round in module __builtin__: 

round(...) 
    round(number[, ndigits]) -> floating point number 

    Round a number to a given precision in decimal digits (default 0 digits). 
    This always returns a floating point number. Precision may be negative. 

>>> 
2
>>> round(1.2345678,4) == round(1.2345999,4) 
True 
相關問題