我有一个生成系列的生成器,例如:
def triangle_nums():
'''Generates a series of triangle numbers'''
tn = 0
counter = 1
while True:
tn += counter
yield tn
counter += + 1
在 Python 2 中,我可以进行以下调用:
g = triangle_nums() # get the generator
g.next() # get the next value
但是在 Python 3 中,如果我执行相同的两行代码,则会收到以下错误:
AttributeError: 'generator' object has no attribute 'next'
但是,循环迭代器语法在 Python 3 中确实有效
for n in triangle_nums():
if not exit_cond:
do_something()...
我还没有找到任何东西来解释 Python 3 的这种行为差异。