python中保留几位小数进行四舍五入的round函数自身的源代码是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中保留几位小数进行四舍五入的round函数自身的源代码是啥?相关的知识,希望对你有一定的参考价值。
参考技术A 它是内置函copy数。build-in,应该是百C语言的。用度的应该是c的library
在python2.73.源码中问
有这样一句。pymath.h:extern
double
round(double);
在pymath.c中定义如下:答
#ifndef
HAVE_ROUND
double
round(double
x)
double
absx,
y;
absx
=
fabs(x);
y
=
floor(absx);
if
(absx
-
y
>=
0.5)
y
+=
1.0;
return
copysign(y,
x);
SQL Server 数值四舍五入,小数点后保留2位
1.round() 函数是四舍五入用,第一个参数是我们要被操作的数据,第二个参数是设置我们四舍五入之后小数点后显示几位。
2.numeric 函数的2个参数,第一个表示数据长度,第二个参数表示小数点后位数。
例如:
select cast(round(12.5,2) as numeric(5,2)) 结果:12.50
select cast(round(12.555,2) as numeric(5,2)) 结果:12.56
select cast(round(122.5255,2) as numeric(5,2)) 结果:122.53
select cast(round(1222.5255,2) as numeric(5,2)) 结果:报错了! 原因是:1222.5255,整数位是4,小数位是2,加起来4+2=6,超出了numeric设置的5位,所以为了保险,可以增减numeric的参数,例如numeric(20,2)。
此文系转载后作一调整,转载自:http://blog.csdn.net/caoyuanlang_11/article/details/5410833
以上是关于python中保留几位小数进行四舍五入的round函数自身的源代码是啥?的主要内容,如果未能解决你的问题,请参考以下文章