Ho un generatore che genera una serie, ad esempio:
def triangle_nums():
'''Generates a series of triangle numbers'''
tn = 0
counter = 1
while True:
tn += counter
yield tn
counter += + 1
In Python 2 sono in grado di effettuare le seguenti chiamate:
g = triangle_nums() # get the generator
g.next() # get the next value
tuttavia in Python 3 se eseguo le stesse due righe di codice ottengo il seguente errore:
AttributeError: 'generator' object has no attribute 'next'
ma la sintassi dell'iteratore di loop funziona in Python 3
for n in triangle_nums():
if not exit_cond:
do_something()...
Non sono ancora riuscito a trovare nulla che spieghi questa differenza di comportamento per Python 3.