python中使用round函数保留小数点任意位数 python用round保留一位小数

主机教程 建站分享 2年前 (2022-09-14) 194次浏览

文章摘要:python中使用round函数保留小数点任意位数 python用round保留一位小数

在python中使用round()函数保留小数点任意位数的方法 round:round()函数的作用是用于返回 […]

在python中使用round()函数保留小数点任意位数的方法

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

round()函数语法:

round( x [, n] )

参数:

x:数字表达式。

n:表示需保留的小数点位数,默认值为 0。

round()函数使用方法:

print ("round(70.23456) : ", round(70.23456))

print ("round(56.659,1) : ", round(56.659,1))

print ("round(80.264, 2) : ", round(80.264, 2))

输出结果为:

round(70.23456) : 70

round(56.659,1) : 56.7

round(80.264, 2) : 80.26


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中使用round函数保留小数点任意位数 python用round保留一位小数
文章链接:http://www.7966.org/post/13375.html
转载请注明出处

喜欢 (0)