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

 

 
posted @ 2017-05-31 17:01  渊=源  阅读(530)  评论(0编辑  收藏  举报