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 相关文章推荐
Python的print用法示例
Feb 11 Python
Python中的hypot()方法使用简介
May 18 Python
Python基于checksum计算文件是否相同的方法
Jul 09 Python
python 循环while和for in简单实例
Aug 16 Python
CentOS下使用yum安装python-pip失败的完美解决方法
Aug 16 Python
python Selenium实现付费音乐批量下载的实现方法
Jan 24 Python
pyqt5 QlistView列表显示的实现示例
Mar 24 Python
5行Python代码实现图像分割的步骤详解
May 25 Python
解决keras加入lambda层时shape的问题
Jun 11 Python
python中xlrd模块的使用详解
Feb 01 Python
AI:如何训练机器学习的模型
Apr 16 Python
Python+OpenCV实现在图像上绘制矩形
Mar 21 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
定制404错误页面,并发信给管理员的程序
2006/10/09 PHP
php数组函数序列之prev() - 移动数组内部指针到上一个元素的位置,并返回该元素值
2011/10/31 PHP
PHP CURL模拟登录新浪微博抓取页面内容 基于EaglePHP框架开发
2012/01/16 PHP
laravel-admin自动生成模块,及相关基础配置方法
2019/10/08 PHP
Js中获取frames中的元素示例代码
2013/07/30 Javascript
jquery网页元素拖拽插件效果及实现
2013/08/05 Javascript
js history对象简单实现返回和前进
2013/10/30 Javascript
获取非最后一列td值并将title设为该值的方法
2013/10/30 Javascript
javascript父、子页面交互技巧总结
2014/08/08 Javascript
javascript实现当前页导航激活的方法
2015/02/27 Javascript
javascript递归回溯法解八皇后问题
2015/04/22 Javascript
10个很棒的jQuery代码片段
2015/09/24 Javascript
JavaScript操作class和style样式代码详解
2016/02/13 Javascript
JavaScript将DOM事件处理程序封装为event.js 出现的低级错误问题
2016/08/03 Javascript
JS及JQuery对Html内容编码,Html转义
2017/02/17 Javascript
vue v-on监听事件详解
2017/05/17 Javascript
深入理解jquery的$.extend()、$.fn和$.fn.extend()
2017/07/08 jQuery
深入浅析Vue全局组件与局部组件的区别
2018/06/15 Javascript
值得收藏的八个常用的js正则表达式
2018/10/19 Javascript
layer ui 导入文件之前传入数据的实例
2019/09/23 Javascript
python判断字符串是否纯数字的方法
2014/11/19 Python
Python实现二叉树结构与进行二叉树遍历的方法详解
2016/05/24 Python
Python实现删除列表中满足一定条件的元素示例
2017/06/12 Python
简单了解python高阶函数map/reduce
2019/06/28 Python
Python 中 -m 的典型用法、原理解析与发展演变
2019/11/11 Python
解决python gdal投影坐标系转换的问题
2020/01/17 Python
pyinstaller打包单文件时--uac-admin选项不起作用怎么办
2020/04/15 Python
python中pow函数用法及功能说明
2020/12/04 Python
canvas绘制圆角头像的实现方法
2019/01/17 HTML / CSS
新秀丽官方旗舰店:Samsonite拉杆箱、双肩包、皮具
2018/03/05 全球购物
俄罗斯苹果优质经销商商店:iPort
2020/05/27 全球购物
如何写一个Java类既可以用作applet也可以用作java应用
2016/01/18 面试题
自荐信写法介绍
2014/01/25 职场文书
大学生工作自荐书
2014/06/16 职场文书
《扇形统计图》教学反思
2016/02/17 职场文书
那些美到让人窒息的诗句,值得你收藏!
2019/08/20 职场文书