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 :-)
|
7 | typo | ||
|
|
||||
|
6 | adding link to decorators | ||
|
Oh, and if you liked this answer, you'll probably like my explanation for decorators. |
||||
|
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 ?). |
||||
|
4 | adding part on infinite generators | ||
|
3 | answer to comment | ||
|
2 | add code analysis | ||
|
1 |
|
||
