我在调试这段代码摘录时遇到了麻烦。别介意它实际上并没有返回作者想要的事实,我已经解释过了,我的问题是不同的。
def factors(n):
result = []
for x in xrange(2,n):
print "\t%i,foo" % x
if n % x == 0:
isPrime = True
print "\t\t%i,bar" % x
for factor in result:
print "\t\t%i %% %i = %i" % (x,factor,x % factor)
if x % factor == 0:
isPrime = False
print "\t\t\t%i,foobar" % x
subFactors = factors(x)
result.extend(subFactors)
if isPrime:
result.append(x)
print ""
return result
def main():
factor = dict()
for i in xrange(1,100):
factor[i] = factors(i)
factor[i].insert(0,1)
factor[i].append(i)
print "%i: %s" % (i,factor[i])
if __name__ == "__main__":
main()
该代码是无限循环的!具体来说,重复输出以下内容:
2,foo
2,bar
3,foo
4 % 2 = 0
4,foobar
请注意,在第二次迭代中,它不打印“bar”打印语句,并且值x
从“bar”打印语句更改为“mod”打印语句。
我无法向作者解释这种行为。你们中的一个善良的人可以吗?