为什么除法四舍五入为整数?

2022-01-30 00:00:00 python math python-2.x

问题描述

我试图将一组从 -100 到 0 的数字标准化为 10-100 的范围,但遇到问题只是注意到即使根本没有变量,这也不会像我期望的那样评估它:

I was trying to normalize a set of numbers from -100 to 0 to a range of 10-100 and was having problems only to notice that even with no variables at all, this does not evaluate the way I would expect it to:

>>> (20-10) / (100-10)
0

浮点除法也不起作用:

>>> float((20-10) / (100-10))
0.0

如果除法的任一侧被转换为浮点数,它将起作用:

If either side of the division is cast to a float it will work:

>>> (20-10) / float((100-10))
0.1111111111111111

第一个例子中的每一边都被评估为一个 int,这意味着最终的答案将被转换为一个 int.因为 0.111 小于 0.5,所以四舍五入为 0.在我看来它并不透明,但我想就是这样.

Each side in the first example is evaluating as an int which means the final answer will be cast to an int. Since 0.111 is less than .5, it rounds to 0. It is not transparent in my opinion, but I guess that's the way it is.

解释是什么?


解决方案

您使用的是 Python 2.x,其中整数除法将截断而不是变成浮点数.

You're using Python 2.x, where integer divisions will truncate instead of becoming a floating point number.

>>> 1 / 2
0

您应该将其中一个设为 float:

You should make one of them a float:

>>> float(10 - 20) / (100 - 10)
-0.1111111111111111

from __future__ import division,强制 / 采用 Python 3.x 始终返回浮点数的行为.

or from __future__ import division, which the forces / to adopt Python 3.x's behavior that always returns a float.

>>> from __future__ import division
>>> (10 - 20) / (100 - 10)
-0.1111111111111111

相关文章