python round 四舍五入?
問題描述
>>> round(0.5)0>>> round(1.5)#為什么這樣2
問題解答
回答1:在不同的Python版本中,round函數(shù)的取值會出現(xiàn)不同狀況
在Python2.7中,round函數(shù)的定義是如果輸入數(shù)值距離兩邊一樣遠(yuǎn),則取偶數(shù)的一邊
~ python2Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 12:39:47) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwinType 'help', 'copyright', 'credits' or 'license' for more information.>>> round(0.5)1.0
在Python3 中,round函數(shù)的定義是四舍五入。
Python 3.6.0 (v3.6.0:41df79263a11, Dec 22 2016, 17:23:13) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwinType 'help', 'copyright', 'credits' or 'license' for more information.>>> round(0.5)0
樓上那位是用了ipython,是基于python2的,所以定義也遵從Python2的。
回答2:round(number, ndigits=None)指要保留的小數(shù)位,默認(rèn)為None
In [5]: round(0.5)Out[5]: 1.0In [6]: round(0.5, 1)Out[6]: 0.5回答3:
試下round(4.5)
相關(guān)文章:
1. docker綁定了nginx端口 外部訪問不到2. 前端 - html5 audio不能播放3. javascript - 最近用echarts做統(tǒng)計圖時遇到兩個問題!!4. html - radio的使用時如何避免整個頁面只能選一個的情況5. git - webstorm窗口中左側(cè)列表的文件名顏色怎么修改6. 利用百度地圖API定位及附件商家信息服務(wù)7. javascript - 深夜被問題困擾求解惑,rn的API之PermissionsAndroidd的問題8. 如何解決docker宿主機無法訪問容器中的服務(wù)?9. 請問各位java自帶類的一些問題10. java - Activity 進入后臺再次傳值?

網(wǎng)公網(wǎng)安備