python中round函数如何使用


Posted in Python onJune 19, 2020

round函数很简单,对浮点数进行近似取值,保留几位小数。比如

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

第一个参数是一个浮点数,第二个参数是保留的小数位数,可选,如果不写的话默认保留到整数。

这么简单的函数,能有什么坑呢?

1、round的结果跟python版本有关

我们来看看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的文档,里面是这么写的:

在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.” 保留值将保留到离上一位更近的一端(四舍六入),如果距离两端一样远,则保留到离0远的一边。所以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.” 如果距离两边一样远,会保留到偶数的一边。比如round(0.5)和round(-0.5)都会保留到0,而round(1.5)会保留到2。

所以如果有项目是从py2迁移到py3的,可要注意一下round的地方(当然,还要注意/和//,还有print,还有一些比较另类的库)。

2、特殊数字round出来的结果可能未必是想要的。

>>> 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) 的结果,不论我们从python2还是3来看,结果都应该是2.68的,结果它偏偏是2.67,为什么?这跟浮点数的精度有关。我们知道在机器中浮点数不一定能精确表达,因为换算成一串1和0后可能是无限位数的,机器已经做出了截断处理。那么在机器中保存的2.675这个数字就比实际数字要小那么一点点。这一点点就导致了它离2.67要更近一点点,所以保留两位小数时就近似到了2.67。

以上。除非对精确度没什么要求,否则尽量避开用round()函数。近似计算我们还有其他的选择:

使用math模块中的一些函数,比如math.ceiling(天花板除法)。

python自带整除,python2中是/,3中是//,还有div函数。

字符串格式化可以做截断使用,例如 "%.2f" % value(保留两位小数并变成字符串……如果还想用浮点数请披上float()的外衣)。

当然,对浮点数精度要求如果很高的话,请用?N瑟馍,不对不对,请用decimal模块。

内容扩展:

round(number,num_digits)

Number 需要进行四舍五入的数字。

Num_digits 指定的位数,按此位数进行四舍五入。

注解

  • 如果 num_digits 大于 0,则四舍五入到指定的小数位。
  • 如果 num_digits 等于 0,则四舍五入到最接近的整数。
  • 如果 num_digits 小于 0,则在小数点左侧进行四舍五入。

示例

x=1.343671234
print x
print round(x,1)
print round(x,2)
print round(x,3)

输出结果为:

1.343671234
1.3
1.34
1.344

到此这篇关于python中round函数如何使用的文章就介绍到这了,更多相关python的round函数用法总结内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
wxPython中listbox用法实例详解
Jun 01 Python
python3操作微信itchat实现发送图片
Feb 24 Python
Windows下将Python文件打包成.EXE可执行文件的方法
Aug 03 Python
Scrapy使用的基本流程与实例讲解
Oct 21 Python
Python识别快递条形码及Tesseract-OCR使用详解
Jul 15 Python
Tensorflow 多线程与多进程数据加载实例
Feb 05 Python
TensorFlow打印输出tensor的值
Apr 19 Python
Python tkinter实现简单加法计算器代码实例
May 13 Python
Pytorch转onnx、torchscript方式
May 25 Python
Python如何把字典写入到CSV文件的方法示例
Aug 23 Python
PyQt5 显示超清高分辨率图片的方法
Apr 11 Python
python前后端自定义分页器
Apr 13 Python
keras实现theano和tensorflow训练的模型相互转换
Jun 19 #Python
Keras 切换后端方式(Theano和TensorFlow)
Jun 19 #Python
python中怎么表示空值
Jun 19 #Python
Python调用OpenCV实现图像平滑代码实例
Jun 19 #Python
使用OpenCV对车道进行实时检测的实现示例代码
Jun 19 #Python
为什么python比较流行
Jun 19 #Python
查看keras的默认backend实现方式
Jun 19 #Python
You might like
PHP学习之整理字符串
2011/04/17 PHP
PHP使用Mysql事务实例解析
2014/09/08 PHP
PHP利用hash冲突漏洞进行DDoS攻击的方法分析
2015/03/26 PHP
List the Stored Procedures in a SQL Server database
2007/06/20 Javascript
window.dialogArguments 使用说明
2011/04/11 Javascript
jQuery获取(选中)单选,复选框,下拉框中的值
2014/02/21 Javascript
javascript 网页进度条简单实例
2017/02/22 Javascript
ES6(ECMAScript 6)新特性之模板字符串用法分析
2017/04/01 Javascript
vue.js如何更改默认端口号8080为指定端口的方法
2017/07/14 Javascript
EasyUI在Panel上动态添加LinkButton按钮
2017/08/11 Javascript
基于Vue.js 2.0实现百度搜索框效果
2020/12/28 Javascript
分享ES6的7个实用技巧
2018/01/18 Javascript
Node.js readline模块与util模块的使用
2018/03/01 Javascript
vue数组对象排序的实现代码
2018/06/20 Javascript
jquery实现简单每周轮换的日历
2020/09/10 jQuery
python 函数传参之传值还是传引用的分析
2017/09/07 Python
python多个模块py文件的数据共享实例
2019/01/11 Python
Pandas之ReIndex重新索引的实现
2019/06/25 Python
Python中IP地址处理IPy模块的方法
2019/08/16 Python
Python根据服务获取端口号的方法
2019/09/25 Python
pycharm 实现复制一行的快捷键
2021/01/15 Python
Python中Qslider控件实操详解
2021/02/20 Python
matplotlib源码解析标题实现(窗口标题,标题,子图标题不同之间的差异)
2021/02/22 Python
三只松鼠官方旗舰店:全网坚果销售第1
2017/11/25 全球购物
英国IT硬件供应商,定制游戏PC:Mesh Computers
2019/03/28 全球购物
c/c++某大公司的两道笔试题
2014/02/02 面试题
酒店保洁主管岗位职责
2013/11/28 职场文书
倡议书范文
2014/04/16 职场文书
学雷锋先进个人事迹
2014/05/26 职场文书
2015元旦家电促销活动策划方案
2014/12/09 职场文书
美术教师个人工作总结
2015/02/06 职场文书
认识实习感想
2015/08/10 职场文书
创业计划书之家政服务
2019/09/18 职场文书
python not运算符的实例用法
2021/06/30 Python
MySQL空间数据存储及函数
2021/09/25 MySQL
Python作用域和名称空间的详细介绍
2022/04/13 Python