>> import decimal >>> decimal.Decimal('0') < 1.0 False 是否有理由解释为什么 D-6ren">
gpt4 book ai didi

python - 为什么 "decimal.Decimal(' 0') < 1.0"在 Python 2.6.5 中产生 False

转载 作者:太空狗 更新时间:2023-10-30 00:30:36 25 4
gpt4 key购买 nike

在 Python 2.6.5 中,以下表达式产生 False:

>>> import decimal
>>> decimal.Decimal('0') < 1.0
False

是否有理由解释为什么 Decimal 与 float 的比较应该表现得像这样?

最佳答案

来自documentation of the decimal module :

Changed in version 2.7: A comparison between a float instance x and a Decimal instance y now returns a result based on the values of x and y. In earlier versions x < y returned the same (arbitrary) result for any Decimal instance x and any float instance y.

所以看起来这是一个错误/缺失的功能,您需要做的就是升级。

关于python - 为什么 "decimal.Decimal(' 0') < 1.0"在 Python 2.6.5 中产生 False,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4945683/

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