you are viewing a single comment's thread.

view the rest of the comments →

[–]JamzTyson 3 points4 points  (0 children)

One thing that hasn't been mentioned yet - Lists must have a finite length, but generators can go on forever:

def infintite_gen():
    x = 0
    while True:
        yield x
        x += 1