python:round(),math.ceil(),math.floor()的區別

round(),math.ceil(),math.floor()的區別 round():round 是「附近、周圍」的意思,因此該函數是一個求近似值的函數,用四捨五入法(有特例)。例子以下: # 正數: 四捨五入 import math round(11.46) # 結果:11 round(11.56) # 結果:12 # 負數: 取絕對值後四捨五入,再變回負數 round(-11.
相關文章
相關標籤/搜索