gpt4 book ai didi

python - 比较数字时的奇怪行为

转载 作者:行者123 更新时间:2023-11-30 23:09:34 26 4
gpt4 key购买 nike

我正在做一个欧拉项目问题,一个相当简单的问题。但是,我在循环结束时得到一个条件,将 0 > 5832 计算为 True

我正在测试给出的示例以验证正确的实现:

The four adjacent digits in the 1000-digit number that have the greatest product are 9 × 9 × 8 × 9 = 5832.

这是我的代码:

digits = 4
number = """
73167176531330624919225119674426574742355349194934
96983520312774506326239578318016984801869478851843
85861560789112949495459501737958331952853208805511
12540698747158523863050715693290963295227443043557
66896648950445244523161731856403098711121722383113
62229893423380308135336276614282806444486645238749
30358907296290491560440772390713810515859307960866
70172427121883998797908792274921901699720888093776
65727333001053367881220235421809751254540594752243
52584907711670556013604839586446706324415722155397
53697817977846174064955149290862569321978468622482
83972241375657056057490261407972968652414535100474
82166370484403199890008895243450658541227588666881
16427171479924442928230863465674813919123162824586
17866458359124566529476545682848912883142607690042
24219022671055626321111109370544217506941658960408
07198403850962455444362981230987879927244284909188
84580156166097919133875499200524063689912560717606
05886116467109405077541002256983155200055935729725
71636269561882670428252483600823257530420752963450
"""

number = number.replace("\n","")
r = 0

for x in xrange(len(number)):
sub = number[x:x+digits]
product = reduce(lambda x, y: int(x) * int(y), sub)
if product > r: # int(required)
print product, ">", r
r = product
print r

进一步挖掘,我可以看到生成的最后一个产品是字符串类型,值为 0,这导致条件评估为 True。这让我很困惑 - 我不确定为什么最后一个产品以字符串形式返回,而不是像其他产品那样以 int 形式返回。我通过用 int(product) > r

替换条件来修复它

谁能解释一下吗?

最佳答案

如果第二个参数的长度为 1,

reduce 将返回原样的第二个参数。示例:

>>> reduce(lambda x, y: int(x) * int(y), "234")
24
>>> reduce(lambda x, y: int(x) * int(y), "34")
12
>>> reduce(lambda x, y: int(x) * int(y), "4")
'4'
当您切片超过字符串末尾时,

sub 在循环的最后一次迭代中的长度将为 1。

您可以通过显式提供初始参数来强制 reduce 至少调用一次 lambda 函数。

product = reduce(lambda x, y: int(x) * int(y), sub, 1)

关于python - 比较数字时的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31121820/

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