本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
1、round函数
python的内置函数,用于数字的四舍五入。
round(0.5) # 1.0 round(-0.5) #-1.0
s = 1.23567 result = round(s, 2) print(result) 1.24
以上就是用round函数保留两位小数的方法啦,如果需要保留其他位数的小数,更改保留位数就可以了。