Python round()返回x从小数点四舍五入到n位。
round(x [,n]) - 语法
round( x [, n] )
x - 这是一个数值表达式。
n - 这也是一个数值表达式。
round(x [,n]) - 返回值
此方法返回从小数点开始四舍五入到n位的x。
round(x [,n]) - 示例
以下示例显示round()方法的用法。
#!/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)
当无涯教程运行上面的程序时,它产生以下输出-
round(80.23456, 2) : 80.23 round(100.000056, 3) : 100.0 round(-100.000056, 3) : -100.0