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 iterator 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 :
you don't need to read the values twice
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 :
Candidates.extend(node._get_child_candidates(distance, min_dist, max_dist)) will not exhaust all the value of the generator ?
Will not the generator produce 2 value max since there is no for in it ?
What I can say :
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.
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.
def anobject.method(): passis invalid syntax in Python. – J.F. Sebastian Oct 24 '08 at 19:09