真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python中round函數(shù)的使用方法-創(chuàng)新互聯(lián)

創(chuàng)新互聯(lián)www.cdcxhl.cn八線動(dòng)態(tài)BGP香港云服務(wù)器提供商,新人活動(dòng)買(mǎi)多久送多久,劃算不套路!

成都創(chuàng)新互聯(lián)公司提供網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì),高端網(wǎng)站設(shè)計(jì),一元廣告等致力于企業(yè)網(wǎng)站建設(shè)與公司網(wǎng)站制作,十多年的網(wǎng)站開(kāi)發(fā)和建站經(jīng)驗(yàn),助力企業(yè)信息化建設(shè),成功案例突破數(shù)千家,是您實(shí)現(xiàn)網(wǎng)站建設(shè)的好選擇.

這篇文章主要介紹python中round函數(shù)的使用方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

round函數(shù)很簡(jiǎn)單,對(duì)浮點(diǎn)數(shù)進(jìn)行近似取值,保留幾位小數(shù)。比如

>>> round(10.0/3, 2)
3.33
>>> round(20/7)
3

第一個(gè)參數(shù)是一個(gè)浮點(diǎn)數(shù),第二個(gè)參數(shù)是保留的小數(shù)位數(shù),可選,如果不寫(xiě)的話默認(rèn)保留到整數(shù)。

這么簡(jiǎn)單的函數(shù),能有什么坑呢?

1、round的結(jié)果跟python版本有關(guān)

我們來(lái)看看python2和python3中有什么不同:

$ python
Python 2.7.8 (default, Jun 18 2015, 18:54:19) 
[GCC 4.9.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> round(0.5)
1.0
$ python3
Python 3.4.3 (default, Oct 14 2015, 20:28:29) 
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> round(0.5)

如果我們閱讀一下python的文檔,里面是這么寫(xiě)的:

在python2.7的doc中,round()的最后寫(xiě)著,“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)會(huì)近似到1,而round(-0.5)會(huì)近似到-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),會(huì)保留到偶數(shù)的一邊。比如round(0.5)和round(-0.5)都會(huì)保留到0,而round(1.5)會(huì)保留到2。

所以如果有項(xiàng)目是從py2遷移到py3的,可要注意一下round的地方(當(dāng)然,還要注意/和//,還有print,還有一些比較另類(lèi)的庫(kù))。

2、特殊數(shù)字round出來(lái)的結(jié)果可能未必是想要的。

>>> round(2.675, 2)
2.67

python2和python3的doc中都舉了個(gè)相同的栗子,原文是這么說(shuō)的:

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.

簡(jiǎn)單的說(shuō)就是,round(2.675, 2) 的結(jié)果,不論我們從python2還是3來(lái)看,結(jié)果都應(yīng)該是2.68的,結(jié)果它偏偏是2.67,為什么?這跟浮點(diǎn)數(shù)的精度有關(guān)。我們知道在機(jī)器中浮點(diǎn)數(shù)不一定能精確表達(dá),因?yàn)閾Q算成一串1和0后可能是無(wú)限位數(shù)的,機(jī)器已經(jīng)做出了截?cái)嗵幚怼D敲丛跈C(jī)器中保存的2.675這個(gè)數(shù)字就比實(shí)際數(shù)字要小那么一點(diǎn)點(diǎn)。這一點(diǎn)點(diǎn)就導(dǎo)致了它離2.67要更近一點(diǎn)點(diǎn),所以保留兩位小數(shù)時(shí)就近似到了2.67。

以上。除非對(duì)精確度沒(méi)什么要求,否則盡量避開(kāi)用round()函數(shù)。近似計(jì)算我們還有其他的選擇:

使用math模塊中的一些函數(shù),比如math.ceiling(天花板除法)。

python自帶整除,python2中是/,3中是//,還有div函數(shù)。

字符串格式化可以做截?cái)嗍褂?,例?"%.2f" % value(保留兩位小數(shù)并變成字符串……如果還想用浮點(diǎn)數(shù)請(qǐng)披上float()的外衣)。

當(dāng)然,對(duì)浮點(diǎn)數(shù)精度要求如果很高的話,請(qǐng)用嘚瑟饃,不對(duì)不對(duì),請(qǐng)用decimal模塊。

以上是python中round函數(shù)的使用方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!


當(dāng)前名稱:python中round函數(shù)的使用方法-創(chuàng)新互聯(lián)
分享URL:http://weahome.cn/article/djddsi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部