gpt4 book ai didi

python - 如何检查浮点值是否为整数

转载 作者:行者123 更新时间:2023-11-28 19:03:34 24 4
gpt4 key购买 nike

我试图找到小于 12,000 的整数的最大立方根。

processing = True
n = 12000
while processing:
n -= 1
if n ** (1/3) == #checks to see if this has decimals or not

虽然我不确定如何检查它是否是整数!我可以将它转换为字符串,然后使用索引来检查最终值并查看它们是否为零,但这看起来相当麻烦。有没有更简单的方法?

最佳答案

要检查浮点值是否为整数,请使用 float.is_integer() method :

>>> (1.0).is_integer()
True
>>> (1.555).is_integer()
False

该方法已添加到 float输入 Python 2.6。

考虑到在 Python 2 中,1/30 (整数操作数的底除法!),并且浮点运算可能不精确(float 是使用二进制分数的近似值,不是精确的实数)。但是稍微调整你的循环会得到:

>>> for n in range(12000, -1, -1):
... if (n ** (1.0/3)).is_integer():
... print n
...
27
8
1
0

这意味着由于上述不精确性,任何超过 3 的立方(包括 10648)都被遗漏了:

>>> (4**3) ** (1.0/3)
3.9999999999999996
>>> 10648 ** (1.0/3)
21.999999999999996

您必须改为检查接近 的数字,或者不使用 float()查找您的电话号码。就像向下舍入 12000 的立方根一样:

>>> int(12000 ** (1.0/3))
22
>>> 22 ** 3
10648

如果您使用的是 Python 3.5 或更新版本,您可以使用 math.isclose() function查看浮点值是否在可配置的范围内:

>>> from math import isclose
>>> isclose((4**3) ** (1.0/3), 4)
True
>>> isclose(10648 ** (1.0/3), 22)
True

对于旧版本,该函数的简单实现(跳过错误检查并忽略无穷大和 NaN)为 mentioned in PEP485 :

def isclose(a, b, rel_tol=1e-9, abs_tol=0.0):
return abs(a - b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)

关于python - 如何检查浮点值是否为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49847677/

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