在这段代码中,为什么使用for
结果为noStopIteration
或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??
在这种情况下,为什么看不到追溯?