紧张白猫

文章
3
资源
0
加入时间
2年10月24天

python 四舍五入

1. 方法1:round( )函数round() 函数作用就是,返回浮点数x的四舍五入值。> round( x [, n] )# 参数x,n均为数值表达式,返回值为x的四舍五入值。n为保留的小数位数,不加n则只保留x四舍五入后的整数部分。>>> round(2.3)2>>> round(2.45, 1)2.5>>> round(2.675, 2)2.67#