本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
1、round函数
python的内置函数,用于数字的四舍五入。
2、round 负数
四舍五入是围绕着0来计算的
示例
round(0.5)#1.0 round(-0.5)#-1.0
3、示例:保留两位小数代码
s=1.23567 result=round(s,2) print(result) 1.24
我们的python中如何四舍五入?如以上就是用round函数保留两位小数的方法啦。如果想要保留其他位数的小数,只要我们的python中如何四舍五
原文来自:https://www.py.cn © 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容