У мене є генератор, який генерує серію, наприклад:
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.