gpt4 book ai didi

python - 为什么我会收到此(python)代码的 "int is not callable"TypeError?

转载 作者:行者123 更新时间:2023-11-28 20:25:31 27 4
gpt4 key购买 nike

<分区>

我正在做欧拉计划的第 30 题,即找出所有可以写成其数字的五次方之和的数字之和。 (http://projecteuler.net/problem=30 了解更多信息。)

出于某种原因,当我尝试运行我尝试的解决方案时遇到“int is not callable”TypeError:

def problem30():
sum = 0
for n in xrange(20000):
if sum([((int(x))**5) for x in list(str(n))]) == n:
sum += n
sum

为什么会出现这样的错误,我该如何解决?提前致谢。

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