Python中取小数用什么函数 python舍去小数函数

博主:xiaoweixiaowei 2022-12-28 条评论

Python中使用round函数取小数,具体方法如下:

round:round()函数的作用是回浮点数x的四舍五入值。

round()函数语法:

round( x [, n] )

参数:

x :数值表达式。

n :数值表达式,表示从小数点位数。

round()函数使用方法:

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

The End

发布于:2022-12-28,除非注明,否则均为 主机评测原创文章,转载请注明出处。