vote up 45 vote down star
37

In plain english, please...

I'm trying to understand this code:

def node._get_child_candidates(self, distance, min_dist, max_dist):
    if self._leftchild and distance - max_dist < self._median:
        yield self._leftchild
    if self._rightchild and distance + max_dist >= self._median:
        yield self._rightchild

And this is the code of the caller:

result, candidates = list(), [self]
while candidates:
    node = candidates.pop()
    distance = node._get_dist(obj)
    if distance <= max_dist and distance >= min_dist:
        result.extend(node._values)
        candidates.extend(node._get_child_candidates(distance, min_dist, max_dist))
        return result

Can you explain me what is happening when the method _get_child_candidates_ is being called? It returns a list?, a single element? is called again? what is the effect of the yield keyword in this case?

flag

59% accept rate
def anobject.method(): pass is invalid syntax in Python. – J.F. Sebastian Oct 24 '08 at 19:09

9 Answers

vote up 120 vote down check

Iterators

To understand what yield does, you must understand what generators are. And before generators come iterators. When you create a list, you can read its items one by one, and it's called iteration :

mylist = [1, 2, 3]

for i in mylist :
    print i
1
2
3

Mylist is an iterator. When you use a comprehension list, you create an iterator :

mylist = [x*x for x in range(3)]

for i in mylist :
        print i
0
1
4

Everything you can use "for... in..." on is an iterator : lists, strings, files... Iterators are handy because you can read them as much as you wish, but you store all the values in memory and it's not always what you want when you have a lot of values.

Generators

Generators act just like iterators, but you can only read them ONCE. It's because they do not store all the values in memory, they generate the values on the fly :

mygenerator = (x*x for x in range(3))

for i in mygenerator :
        print i
0
1
4

It just the same except you used () instead of []. BUT, you can not perform "for i in mylist" a second time because generator can only be used once since they calculate 0, then forget about it and calculate 1 and ends calculating 4, one by one.

Yield

Yield is a keyword that is used like "return", except the function will return a generator.

def createGenerator() :

    mylist = range(3)

    for i in mylist :
         yield i*i

mygenerator = createGenerator() # create a generator

# mygenerator is an object !

for i in mygenerator :
        print i
0
1
4

Here it's a useless example, but it's handy when you know your function will return a huge set of values that you will only need to read once.

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 generator object, this is bit tricky :-)

Then your code will be run each time the "for" uses the generator.

Now the hard part :

The first time your function will run, it will run from the beginning and until it hits "yield" then return the first value of the loop. Then, each other call will run the loop you have written in the function one more time and return the next value, until there is no value to return.

The generator is considered empty once the function runs but does not hit yield anymore. It can be because the loop had come to ends or because you do not satisfy a "if/else" anymore.

Your code explained

# here you create the method of the node object that will return the generator

def node._get_child_candidates(self, distance, min_dist, max_dist):

  # here is the code that will be called each time you use the generator object :

  # if there is still a child of the node object on its left
  # and if distance is ok, return the next child
  if self._leftchild and distance - max_dist < self._median:
                yield self._leftchild

  # if there is still a child of the node object on its right
  # and if distance is ok, return the next child
  if self._rightchild and distance + max_dist >= self._median:
                yield self._rightchild

  # if the function arrives here, the generator will be considered empty

# create an empty list and a list with the current object reference
result, candidates = list(), [self]

# loop on candidates (which contains only one element at the begining) 
while candidates:
    # get the last candidate and remove it from the list
    node = candidates.pop()
    # get the distance between obj and the candidate
    distance = node._get_dist(obj)
    # if distance is ok, then you can fill the result
    if distance <= max_dist and distance >= min_dist:
        result.extend(node._values)
    # add the childs of the candidate in the candidates list 
    # so the loop will keep running until it will have looked
    # at all the childs of the childs of the childs, etc. of the candidate

    candidates.extend(node._get_child_candidates(distance, min_dist, max_dist))

return result

This code contains several smart parts :

  • The loop iterate on a list but the list expends while the loop iterate it :-) It's a concise way to go through all the data even if it's a bit dangerous since you can ends with an infinite loop and a stack overflow. Nice :-)

  • The extend() method is a list object method that expects an iterator and adds its values to the list.

Usually we pass a list to it :

a = [1,2]
b = [3, 4]
a.extend(b)
print a
[1,2,3,4]

But in your code it gets a generator, which is good because :

  1. you don't need to read the values twice

  2. you can have a lot of childs and you don't want them all stored in memory

And it works because Python does not care if the argument of a method is a list or not. Python expects iterators so it will work with strings, lists, tuples and generators !

This is called duck typing and is one of the reason why Python is so cool. But this is another story, for another question...

See you on SO !


Answer to comments

Mr Fooz asked me if :

  1. Candidates.extend(node._get_child_candidates(distance, min_dist, max_dist)) will not exhaust all the value of the generator ?

  2. Will not the generator produce 2 value max since there is no for in it ?

What I can say :

  1. Yes it does. But at each call of candidates.extend you call node._get_child_candidates, creating a new generator object which will produce different values from the previous one since it's not applied on the same node.

  2. Yes it will. It this code, there is probably no more than two next childs (one left and one right). The other want to exhaust them all if needed.

Claudiu got a point :

An generator does not have to become empty. If you use an infinite loop with a yield, you will get an infinite generator. And you won't get a stack overflow because nothing is stored in memory.

But it means more than that. It means that you can design a code where you can control the generator exhaustion.

e.g :

# let's create a bank, building ATMs
class Bank() :
    crisis = False
    def create_atm(self) :
        while not self.crisis :
            yield "$100"

# when everything is fine, you can get as much money as you want from an ATM
hsbc = Bank()
corner_street_atm = hsbc.create_atm()
print corner_street_atm.next()
$100
print corner_street_atm.next()
$100
print [corner_street_atm.next() for cash in range(5)]
['$100', '$100', '$100', '$100', '$100']

# crisis is coming, no more money !
hsbc.crisis = True
print corner_street_atm.next()
<type 'exceptions.StopIteration'>

# but it's true even for newly built ATM
wall_street_atm = hsbc.create_atm()
print wall_street_atm.next()
<type 'exceptions.StopIteration'>

# trouble is, when the crisis is off, the ATM are still empty...
hsbc.crisis = False
print corner_street_atm.next()
<type 'exceptions.StopIteration'>

# but if you build new ones, you're in business again !
brand_new_atm = hsbc.create_atm()
for cash in brand_new_atm :
    print cash
$100
$100
$100
$100
$100
$100
$100
$100
$100
...

It can be usefull for various things like controling access to a ressource.

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 ?).

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

link|flag
1  
Do you mean to yield i*i in the last example? – MattSmith Oct 23 '08 at 23:09
yes, thx, corrected :-) – e-satis Oct 23 '08 at 23:19
good job, I don't know if you wrote it just now, but I learned generator and yield from your writing. – Haoest Oct 23 '08 at 23:38
2  
mylist is not an iterator (hasattr(mylist, 'next') == False). It is an iterable (hasattr(mylist, '__iter__') == True). mylist.extend accept an iterable (not iterator) as argument. To understand how the for-loop works in Python read effbot.org/zone/python-for-statement.htm – J.F. Sebastian Oct 24 '08 at 19:02
2  
I know, I'm panicking. I should no panic. Where is my towel ? – e-satis Oct 21 at 16:37
show 34 more comments
vote up 8 vote down

Think of it this way:

An iterator is just a fancy sounding term for an object that has a next() method. So a yield-ed function ends up being something like this:

Original version:

def some_function():
    for i in xrange(4):
        yield i

for i in some_function():
    print i

This is basically what the python interpreter does with the above code:

class it:
    def __init__(self):
        self.count = -1  #start at -1 so that we get 0 when we add 1 below
    def next(self):    #the next method will be called implicitly by the for loop
        self.count += 1
        if self.count < 4:
            return self.count
        else:
           #a StopIteration exception is raised to signal that the iterator is done.  This is caught implicitly by the for loop
            raise StopIteration 

def some_func():
    return it()

for i in some_func():
    print i

For more insight as to what's happening behind the scenes, the for loop can be rewritten to this:

iterator = some_func()
try:
    while 1:
        print iterator.next()
except StopIteration:
    pass

Does that make more sense or just confuse you more? :)

EDIT: I should note that this IS an oversimplification for illustrative purposes. :)

EDIT 2: Forgot to throw the StopIteration exception

link|flag
for-loop expects an iterable (not iterator), therefore an __iter__ method must be defined. In case of an iterator object it is very simple: __iter__ = lambda self: self – J.F. Sebastian Oct 25 '08 at 1:55
__getitem__ could be defined instead of __iter__. For example: class it: pass; it.__getitem__ = lambda self, i: i*10 if i < 10 else [][0]; for i in it(): print(i), It will print: 0, 10, 20, ..., 90 – J.F. Sebastian Oct 25 '08 at 2:03
Like I said, it's intentionally over-simplified. :) – Jason Baker Oct 25 '08 at 2:22
vote up 7 vote down

Shortcut to Grokking yield

When you see a function with yield statements, apply this easy trick to understand what will happen:

  1. Insert a line result = [] at the start of the function.
  2. Replace each yield expr with result.append(expr).
  3. Insert a line return result at the bottom of the function.
  4. Yay - no more yield statements! Read and figure out code.
  5. Revert function to original definition.

This trick may give you an idea of the logic behind the function, but what actually happens with yield is significantly different that what happens in the list based approach. In many cases the yield approach will be a lot more memory efficient and faster too. In other cases this trick will get you stuck in an infinite loop, even though the original function works just fine. Read on to learn more...

Don't confuse your Iterables, Iterators and Generators

First, the iterator protocol - when you write

for x in mylist:
    ...loop body...

Python performs the following two steps:

  1. Gets an iterator for mylist:

    Call iter(mylist) -> this returns an object with a next() method.

    [This is the step most people forget to tell you about]

  2. Uses the iterator to loop over items:

    Keep calling the next() method on the iterator returned from step 1. The return value from next() is assigned to x and the loop body is executed. If an exception StopIteration is raised from within next(), it means there are no more values in the iterator and the loop is exited.

The truth is Python performs the above two steps anytime it wants to loop over the contents of an object - so it could be a for loop, but it could also be code like otherlist.extend(mylist) (where otherlist is a Python list).

Here mylist is an iterable because it implements the iterator protocol. In a user defined class, you can implement the __iter__() method to make instances of your class iterable. This method should return an iterator. An iterator is an object with a next() method. It is possible to implement both __iter__() and next() on the same class, and have __iter__() return self. This will work for simple cases, but not when you want two iterators looping over the same object at the same time.

So that's the iterator protocol, many objects implement this protocol:

  1. Built-in lists, dictionaries, tuples, sets, files.
  2. User defined classes that implement __iter__().
  3. Generators.

Note that a for loop doesn't know what kind of object it's dealing with - it just follows the iterator protocol, and is happy to get item after item as it calls next(). Built-in lists return their items one by one, dictionaries return the keys one by one, files return the lines one by one, etc. And generators return... well that's where yield comes in:

def f123():
    yield 1
    yield 2
    yield 3

for item in f():
    print item

Instead of yield statements, if you had three return statements in f123() only the first would get executed, and the function would exit. But f123() is no ordinary function. When f123() is called, it does not return any of the values in the yield statements! It returns a generator object. Also, the function does not really exit - it goes into a suspended state. When the for loop tries to loop over the generator object, the function resumes from its suspended state, runs until the next yield statement and returns that as the next item. This happens until the function exits, at which point the generator raises StopIteration, and the loop exits.

So the generator object is sort of like an adapter - at one end it exhibits the iterator protocol, by exposing __iter__() and next() methods to keep the for loop happy. At the other end however, it runs the function just enough to get the next value out of it, and puts it back in suspended mode.

Why Use Generators?

Usually you can write code that doesn't use generators but implements the same logic. One option is to use the temporary list 'trick' I mentioned before. That will not work in all cases, for e.g. if you have infinite loops, or it may make inefficient use of memory when you have a really long list. The other approach is to implement a new iterable class SomethingIter that keeps state in instance members and performs the next logical step in it's next() method. Depending on the logic, the code inside the next() method may end up looking very complex and be prone to bugs. Here generators provide a clean and easy solution.

link|flag
vote up 4 vote down

yield is just like return. It returns whatever you tell it to. The only difference is that the next time you call the function, execution starts from the last call to the yield statement.

In the case of your code, the function get_child_candidates is acting like an iterator so that when you extend your list, it adds one element at a time to the new list.

list.extend calls an iterator until it's exhausted. In the case of the code sample you posted, it would be much clearer to just return a tuple and append that to the list.

link|flag
This is close, but not correct. Every time you call a function with a yield statement in it, it returns a brand new generator object. It's only when you call that generator's .next() method that execution resumes after the last yield. – kurosch Oct 24 '08 at 18:11
vote up 3 vote down

An example in plain language. I will provide a correspondence between high-level human concepts to low-level python concepts.

I want to operate on a sequence of numbers, but I don't want to bother my self with the creation of that sequence, I want only to focus on the operation I want to do. So, I do the following:

  • I call you and tell you that I want a sequence of numbers which is produced in a specific way, and I let you know what the algorithm is.
    This step corresponds to defining the generator function, i.e. the function containing a yield.
  • Sometime later, I tell you, "ok, get ready to tell me the sequence of numbers".
    This step corresponds to calling the generator function which returns a generator object. Note that you don't tell me any numbers yet, you just grab your paper and pencil.
  • I ask you, "tell me the next number", and you tell me the first number; after that, you wait for me to ask you for the next number. It's your job to remember where you were, what numbers you have already said, what is the next number. I don't care about the details.
    This step corresponds to calling .next() on the generator object.
  • … repeat previous step, until…
  • eventually, you might come to an end. You don't tell me a number, you just shout, "hold your horses! I'm done! No more numbers!"
    This step corresponds to the generator object ending its job, and raising a StopIteration exception The generator function does not need to raise the exception, it's raised automatically when the function ends or issues a return.

This is what a generator does (a function that contains a yield); it starts executing, pauses whenever it does a yield, and when asked for a .next() value it continues from the point it was last. It fits perfectly by design with the iterator protocol of python, which describes how to sequentially request for values.

The most famous user of the iterator protocol is the for command in python. So, whenever you do a:

for item in sequence:

it doesn't matter if sequence is a list, a string, a dictionary or a generator object like described above; the result is the same: you read items off a sequence one by one.

Note that defining a function which contains a yield keyword is not the only way to create a generator; it's just the easiest way to create one.

For more accurate information, read about iterator types, the yield statement and generators in the Python documentation.

link|flag
vote up 2 vote down

I feel like I post a link to this presentation every day: David M. Beazly's Generator Tricks for Systems Programmers. If you're a Python programmer and you're not extremely familiar with generators, you should read this. It's a very clear explanation of what generators are, how they work, what the yield statement does, and it answers the question "Do you really want to mess around with this obscure language feature?"

SPOILER ALERT. The answer is: Yes. Yes, you do.

link|flag
vote up 1 vote down

From The Python Reference Manual:

The yield statement is only used when defining a generator function, and is only used in the body of the generator function. Using a yield statement in a function definition is sufficient to cause that definition to create a generator function instead of a normal function.

When a generator function is called, it returns an iterator known as a generator iterator, or more commonly, a generator. The body of the generator function is executed by calling the generator's next() method repeatedly until it raises an exception.

When a yield statement is executed, the state of the generator is frozen and the value of expression_list is returned to next()'s caller. By ``frozen'' we mean that all local state is retained, including the current bindings of local variables, the instruction pointer, and the internal evaluation stack: enough information is saved so that the next time next() is invoked, the function can proceed exactly as if the yield statement were just another external call.

Do you have the entire generator function listed? It doesn't look complete.

My guess from the incomplete code is that you set the parameters, and every time you call the function it returns the next child node that fits the parameters. The yield allows you to easily write a function (generator function) that is called repeatedly to gather 'chunks' of information, by 'pausing' the function, returning the value, and then continuing the function where it was paused when next called.

-Adam

link|flag
vote up 1 vote down

It's returning a generator. I'm not particularly familiar with Python, but I believe it's the same kind of thing as C#'s iterator blocks if you're familiar with those.

There's an IBM article which explains it reasonably well (for Python) as far as I can see.

The key idea is that the compiler/interpreter/whatever does some trickery so that as far as the caller is concerned, they can keep calling next() and it will keep returning values - as if the generator method was paused. Now obviously you can't really "pause" a method, so the compiler builds a state machine for you to remember where you currently are and what the local variables etc look like. This is much easier than writing an iterator yourself.

link|flag
In essence, you're correct. Python iterators are the same basic idea as C#'s IEnumerators (or IEnumerables, I always get those mixed up). In fact, I'm pretty sure the yield return keyword was inspired by python. :) – Jason Baker Oct 23 '08 at 22:32
@Jason Baker: at least wikipedia agrees with you: en.wikipedia.org/wiki/C_Sharp_programming_language/… (look for yield). I also have the same impression, remember mention in comp.lang.python of C# getting a "yield return", but I strangely couldn't find some official statement. – ΤΖΩΤΖΙΟΥ Oct 24 '08 at 0:49
vote up 1 vote down

There's one extra thing to mention: a function that yields doesn't actually have to terminate. I've written code like this:

def fib():
    yield 1
    yield 1
    cur = 1
    last = 1
    while True:
        cur, last = cur+last, cur
        yield cur

Then I can use it in other code like this:

for f in fib():
    if some_condition: break
    coolfuncs(f);

It really helps simplify some problems, and makes some things easier to work with.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.