Bir seri üreten bir jeneratör var, örneğin:
def triangle_nums():
'''Generates a series of triangle numbers'''
tn = 0
counter = 1
while True:
tn += counter
yield tn
counter += + 1
Python 2'de aşağıdaki aramaları yapabilirim:
g = triangle_nums() # get the generator
g.next() # get the next value
Ancak aynı iki satır kod yürütmek Python 3 aşağıdaki hatayı alıyorum:
AttributeError: 'generator' object has no attribute 'next'
ancak, döngü yineleyici sözdizimi Python 3'te çalışır
for n in triangle_nums():
if not exit_cond:
do_something()...
Python 3'teki davranış farklılıklarını açıklayan hiçbir şey bulamadım.