python中round函數(shù)如何使用
round函數(shù)很簡單,對浮點數(shù)進(jìn)行近似取值,保留幾位小數(shù)。比如
>>> round(10.0/3, 2)3.33>>> round(20/7)3
第一個參數(shù)是一個浮點數(shù),第二個參數(shù)是保留的小數(shù)位數(shù),可選,如果不寫的話默認(rèn)保留到整數(shù)。
這么簡單的函數(shù),能有什么坑呢?
1、round的結(jié)果跟python版本有關(guān)
我們來看看python2和python3中有什么不同:
$ pythonPython 2.7.8 (default, Jun 18 2015, 18:54:19) [GCC 4.9.1] on linux2Type 'help', 'copyright', 'credits' or 'license' for more information.>>> round(0.5)1.0
$ python3Python 3.4.3 (default, Oct 14 2015, 20:28:29) [GCC 4.8.4] on linuxType 'help', 'copyright', 'credits' or 'license' for more information.>>> round(0.5)
如果我們閱讀一下python的文檔,里面是這么寫的:
在python2.7的doc中,round()的最后寫著,“Values are rounded to the closest multiple of 10 to the power minus ndigits; if two multiples are equally close, rounding is done away from 0.” 保留值將保留到離上一位更近的一端(四舍六入),如果距離兩端一樣遠(yuǎn),則保留到離0遠(yuǎn)的一邊。所以round(0.5)會近似到1,而round(-0.5)會近似到-1。
但是到了python3.5的doc中,文檔變成了“values are rounded to the closest multiple of 10 to the power minus ndigits; if two multiples are equally close, rounding is done toward the even choice.” 如果距離兩邊一樣遠(yuǎn),會保留到偶數(shù)的一邊。比如round(0.5)和round(-0.5)都會保留到0,而round(1.5)會保留到2。
所以如果有項目是從py2遷移到py3的,可要注意一下round的地方(當(dāng)然,還要注意/和//,還有print,還有一些比較另類的庫)。
2、特殊數(shù)字round出來的結(jié)果可能未必是想要的。
>>> round(2.675, 2)2.67
python2和python3的doc中都舉了個相同的栗子,原文是這么說的:
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.
簡單的說就是,round(2.675, 2) 的結(jié)果,不論我們從python2還是3來看,結(jié)果都應(yīng)該是2.68的,結(jié)果它偏偏是2.67,為什么?這跟浮點數(shù)的精度有關(guān)。我們知道在機(jī)器中浮點數(shù)不一定能精確表達(dá),因為換算成一串1和0后可能是無限位數(shù)的,機(jī)器已經(jīng)做出了截斷處理。那么在機(jī)器中保存的2.675這個數(shù)字就比實際數(shù)字要小那么一點點。這一點點就導(dǎo)致了它離2.67要更近一點點,所以保留兩位小數(shù)時就近似到了2.67。
以上。除非對精確度沒什么要求,否則盡量避開用round()函數(shù)。近似計算我們還有其他的選擇:
使用math模塊中的一些函數(shù),比如math.ceiling(天花板除法)。
python自帶整除,python2中是/,3中是//,還有div函數(shù)。
字符串格式化可以做截斷使用,例如 '%.2f' % value(保留兩位小數(shù)并變成字符串……如果還想用浮點數(shù)請披上float()的外衣)。
當(dāng)然,對浮點數(shù)精度要求如果很高的話,請用?N瑟饃,不對不對,請用decimal模塊。
內(nèi)容擴(kuò)展:
round(number,num_digits)
Number 需要進(jìn)行四舍五入的數(shù)字。
Num_digits 指定的位數(shù),按此位數(shù)進(jìn)行四舍五入。
注解
如果 num_digits 大于 0,則四舍五入到指定的小數(shù)位。 如果 num_digits 等于 0,則四舍五入到最接近的整數(shù)。 如果 num_digits 小于 0,則在小數(shù)點左側(cè)進(jìn)行四舍五入。示例
x=1.343671234print xprint round(x,1)print round(x,2)print round(x,3)
輸出結(jié)果為:
1.3436712341.31.341.344
到此這篇關(guān)于python中round函數(shù)如何使用的文章就介紹到這了,更多相關(guān)python的round函數(shù)用法總結(jié)內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. python利用os模塊編寫文件復(fù)制功能——copy()函數(shù)用法2. php測試程序運行速度和頁面執(zhí)行速度的代碼3. php網(wǎng)絡(luò)安全中命令執(zhí)行漏洞的產(chǎn)生及本質(zhì)探究4. 三個不常見的 HTML5 實用新特性簡介5. 無線標(biāo)記語言(WML)基礎(chǔ)之WMLScript 基礎(chǔ)第1/2頁6. ajax請求添加自定義header參數(shù)代碼7. Python使用jupyter notebook查看ipynb文件過程解析8. 解決Python 進(jìn)程池Pool中一些坑9. 解決python腳本中error: unrecognized arguments: True錯誤10. IntelliJ IDEA創(chuàng)建普通的Java 項目及創(chuàng)建 Java 文件并運行的教程
