Python函数-round() 函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python函数-round() 函数相关的知识,希望对你有一定的参考价值。

round( x [, n]  )
功能:
round() 方法返回浮点数x的四舍五入值。
x-数值表达式。n-数值表达式。返回浮点数x的四舍五入值。

实例:
1 #!/usr/bin/python
2 
3 print "round(80.23456, 2) : ", round(80.23456, 2)
4 print "round(100.000056, 3) : ", round(100.000056, 3)
5 print "round(-100.000056, 3) : ", round(-100.000056, 3)

结果:

round(80.23456, 2) :  80.23
round(100.000056, 3) :  100.0
round(-100.000056, 3) :  -100.0

 

 





以上是关于Python函数-round() 函数的主要内容,如果未能解决你的问题,请参考以下文章

Python内置函数(55)——round

Python第三周Round3-初识函数

Python中Round函数:怎么解释?怎么用?

python内置函数

改写python round()函数,解决四舍五入问题 round(1.365,2)=1.36

python int() round() floor()函数的比较