round()方法返回 x 的小数点四舍五入到n个数字。
语法
以下是round()方法的语法:
1
|
round ( x [, n] )
|
参数
- x --这是一个数值表达式
- n --这也是一个数值表达式
返回值
该方法返回 x 的小数点四舍五入到n个数字
例子
下面的例子显示了round()方法的使用
1
2
3
4
5
|
#!/usr/bin/python
print "round(80.23456, 2) : " , round ( 80.23456 , 2 )
print "round(100.000056, 3) : " , round ( 100.000056 , 3 )
print "round(-100.000056, 3) : " , round ( - 100.000056 , 3 )
|
当我们运行上面的程序,它会产生以下结果:
1
2
3
|
round ( 80.23456 , 2 ) : 80.23
round ( 100.000056 , 3 ) : 100.0
round ( - 100.000056 , 3 ) : - 100.0
|