Python中取小数用什么函数 python取小数部分函数

主机教程 建站分享 2年前 (2022-12-12) 171次浏览

文章摘要:Python中取小数用什么函数 python取小数部分函数

Python中使用round函数取小数,具体方法如下: round:round()函数的作用是回浮点数x的四舍 […]

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


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:Python中取小数用什么函数 python取小数部分函数
文章链接:http://www.7966.org/post/15423.html
转载请注明出处

喜欢 (0)