Python round函数

round函数用于指定保留小数位数,返回四舍五入的结果

x=1.234556
print x
print round(x,1)
print round(x,2)
print round(x,3)

输出结果为:

1.234556
1.2
1.23
1.235

你可能感兴趣的:(Python round函数)