为什么Python中10.5除以2.1等于4
我发现在 python 中,10.5 // 2.1 == 4.0 但 11.5 // 2.3 == 5.0。
我猜原因可能与计算机中浮点数的表示有关。但 10.5 和 11.5 都可以很好地表示,而 2.1 和 2.3 则不能。那么为什么结果不同呢?
I found that in python, 10.5 // 2.1 == 4.0 but 11.5 // 2.3 == 5.0.
I guess the reason could be releated to the representing of float number in computer. But both 10.5 and 11.5 could be well represented while 2.1 and 2.3 cannot. So why the resule is different?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太熟悉 python 的 C 源代码,但我认为
//
是通过以下方式实现的:虽然我们可以深入研究
_float_div_mod()
,但自从它看起来是 python 实现divmod()
的基础,我刚刚尝试了这个:给我:
所以,答案似乎被塞满了 浮点数学是否损坏?
I'm not really familiar with the C source of python, but poking about I think that
//
is implemented by:While we could dive into
_float_div_mod()
, but since it looks to be the basis of python's implementation ofdivmod()
, I just tried this:Giving me:
So, the answer seems to be chocked up to Is floating point math broken?