最佳答案
在这段代码中,为什么使用 for
会导致没有 StopIteration
还是 for
循环捕获所有异常,然后悄悄退出?
在这种情况下,为什么我们有无关的 return
? ? 或者是
raise StopIteration
由: return None
引起?
#!/usr/bin/python3.1
def countdown(n):
print("counting down")
while n >= 9:
yield n
n -= 1
return
for x in countdown(10):
print(x)
c = countdown(10)
next(c)
next(c)
next(c)
假设 StopIteration
是由: return None
触发的。
什么时候生成 GeneratorExit
?
def countdown(n):
print("Counting down from %d" % n)
try:
while n > 0:
yield n
n = n - 1
except GeneratorExit:
print("Only made it to %d" % n)
如果我手动执行:
c = countdown(10)
c.close() #generates GeneratorExit??
这样的话,为什么我看不到追踪记录?