考虑以下代码片段(注意我使用的是全局,因为非本地关键字在 Python 2.7 中不可用)
def foo(L,K):
global count
count = 0
def bar(f,L):
global count
for e in L:
if e - f == K or f - e == K: count += 1
yield e
try:
while True:
L = bar(L.next(),L)
except StopIteration:
return count
count=0
print foo((int(e) for e in some_string.split()),some_number)
在哪里
some_string: A space delimited integers
some_number: An integer
什么时候len(some_string) = 4000
,上面的代码失败并出现错误
RuntimeError: maximum recursion depth exceeded while calling a Python object
是因为内部嵌套的生成器是作为递归实现的吗?