ฉันมีเครื่องกำเนิดไฟฟ้าที่สร้างซีรีส์เช่น:
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