当前位置:Gxlcms > Python > python3中round()函数碰到的问题

python3中round()函数碰到的问题

时间:2021-07-01 10:21:17 帮助过:56人阅读

Python3的round()函数四舍五入取整时,采用最近偶数原则

>>> round(1.5)
2
>>> round(2.5)
2
>>> round(3.5)
4
>>> round(4.5)
4

以上就是python3中round()函数碰到的问题的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行