我有一个生成序列的生成器,例如:
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'
但是,循环迭代器语法在python3中是有效的
for n in triangle_nums():
if not exit_cond:
do_something()...
我还没有找到任何东西来解释Python 3行为上的这种差异。