show/hide this revision's text 7 typo

To master yield, you must understand that when you call the function, the code you have writen in the function body does not run. The function only returns the iterator generator object, this is bit tricky :-)

show/hide this revision's text 6 adding link to decorators

Oh, and if you liked this answer, you'll probably like my explanation for decorators.

show/hide this revision's text 5 adding JF comment

J.F. Sebastian pointed out an important detail

Geez, here I go editing again !

I said in the first paragraph that lists were iterators. Wrong. Shame on me.

Iterators are objects that implement a next() method.

Iterables are objects that define the __iter__() method (which returns an iterator), or if not, at least __getitem__().

Lists are iterables. Mea culpa. And yes, you should read the article J.F. recommends on how does the for loop work. It's very interesting.

I will not correct the text anyway, since generators are difficult enough to not mess with the newbie brain even more. But if anyone reach the bottom of this loooooooooooooooooooong answer, he will know The Truth.

And by the way if you do, let me know in a comment, I'd like to see if people read this kind of answer from top to bottom (meaning, is it worth is to keep writing them ?).

show/hide this revision's text 4 adding part on infinite generators
show/hide this revision's text 3 answer to comment
show/hide this revision's text 2 add code analysis
show/hide this revision's text 1