gpt4 book ai didi

python - 在 Python 中,整数除法中向零舍入的好方法是什么?

转载 作者:IT老高 更新时间:2023-10-28 21:10:05 35 4
gpt4 key购买 nike

1/2

给予

0

应该如此。然而,

-1/2

给予

-1

,但我希望它向 0 舍入(即我希望 -1/2 为 0),无论它是正数还是负数。最好的方法是什么?

最佳答案

进行浮点除法然后转换为整数。不需要额外的模块。

Python 3:

>>> int(-1 / 2)
0
>>> int(-3 / 2)
-1
>>> int(1 / 2)
0
>>> int(3 / 2)
1

Python 2:

>>> int(float(-1) / 2)
0
>>> int(float(-3) / 2)
-1
>>> int(float(1) / 2)
0
>>> int(float(3) / 2)
1

关于python - 在 Python 中,整数除法中向零舍入的好方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19919387/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com