最佳答案
如何在Python中舍入一个数字?
我尝试了round(number)
,但它将数字四舍五入。示例:
round(2.3) = 2.0
而不是3,如我所愿。
我尝试了int(number + .5)
,但它再次将数字四舍五入!示例:
int(2.3 + .5) = 2