I'm starting to learn Python and I've come across generator functions, those that have a yield statement in them. I want to know what types of problems that these functions are really good at solving.
|
|
Generators give you lazy evaluation. You use them by iterating over them, either explicitly with 'for' or implicitly by passing it to any function or construct that iterates. You can think of generators as returning multiple items, as if they return a list, but instead of returning them all at once they return them one-by-one, and the generator function is paused until the next item is requested. Generators are good for calculating large sets of results (in particular calculations involving loops themselves) where you don't know if you are going to need all results, or where you don't want to allocate the memory for all results at the same time. Or for situations where the generator uses another generator, or consumes some other resource, and it's more convenient if that happened as late as possible. Another use for generators (that is really the same) is to replace callbacks with iteration. In some situations you want a function to do a lot of work and occasionally report back to the caller. Traditionally you'd use a callback function for this. You pass this callback to the work-function and it would periodically call this callback. The generator approach is that the work-function (now a generator) knows nothing about the callback, and merely yields whenever it wants to report something. The caller, instead of writing a separate callback and passing that to the work-function, does all the reporting work in a little 'for' loop around the generator. For example, say you wrote a 'filesystem search' program. You could perform the search in its entirety, collect the results and then display them one at a time. All of the results would have to be collected before you showed the first, and all of the results would be in memory at the same time. Or you could display the results while you find them, which would be more memory efficient and much friendlier towards the user. The latter could be done by passing the result-printing function to the filesystem-search function, or it could be done by just making the search function a generator and iterating over the result. If you want to see an example of the latter two approaches, see os.path.walk() (the old filesystem-walking function with callback) and os.walk() (the new filesystem-walking generator.) Of course, if you really wanted to collect all results in a list, the generator approach is trivial to convert to the big-list approach:
|
|||||
|
|
One of the reasons to use generator is to make the solution clearer for some kind of solutions. The other is to treat results one at a time, avoiding building huge lists of results that you would process separated anyway. If you have a fibonacci-up-to-n function like this:
You can more easily write the function as this:
The function is clearer. And if you use the function like this:
in this example, if using the generator version, the whole 1000000 item list won't be created at all, just one value at a time. That would not be the case when using the list version, where a list would be created first. |
|||||
|
|
See the "Motivation" section in PEP 255. A non-obvious use of generators is creating interruptible functions, which lets you do things like update UI or run several jobs "simultaneously" (interleaved, actually) while not using threads. |
|||
|
|
|
Buffering. When it is efficient to fetch data in large chunks, but process it in small chunks, then a generator might help:
The above lets you easily separate buffering from processing. The consumer function can now just get the values one by one without worrying about buffering. |
|||
|
|
|
The simple explanation:
Consider a
A lot of the time, all the items in
Other times, you don't even know all the items ahead of time. For example:
You have no way of knowing all the user's commands beforehand, but you can use a nice loop like this if you have a generator handing you commands:
With generators you can also have iteration over infinite sequences, which is of course not possible when iterating over containers. |
|||
|
|
I have found that generators are very helpful in cleaning up your code and by giving you a very unique way to encapsulate and modularize code. In a situation where you need something to constantly spit out values based on its own internal processing and when that something needs to be called from anywhere in your code (and not just within a loop or a block for example), generators are the feature to use. An abstract example would be a fibonacci number generator that does not live within a loop and when it is called from anywhere will always return the next number in sequence:
def fib():
first=0
second=1
yield first
yield second
while 1:
next=first+second
yield next
first=second
second=next
fibgen1=fib()
fibgen2=fib()
Now you have two fibonacci number generator objects which you can call from anywhere in your code and they will always return ever larger fibonacci numbers in sequence as follows: >>> fibgen1.next(); fibgen1.next(); fibgen1.next(); fibgen1.next() 0 1 1 2 >>> fibgen2.next(); fibgen2.next() 0 1 >>> fibgen1.next(); fibgen1.next() 3 5 The lovely thing about generators is that they encapsulate state without having to go through the hoops of creating objects. One way of thinking about them is as "functions" which remember their internal state. I got the fibonacci example from http://www.neotitans.com/resources/python/python-generators-tutorial.html and with a little imagination, you can come up with a lot of other situations where generators make for a great alternative to for-loops and other traditional iteration constructs. |
|||
|
|
|
My favorite uses are "filter" and "reduce" operations. Let's say we're reading a file, and only want the lines which begin with "##".
We can then use the generator function in a proper loop
The reduce example is similar. Let's say we have a file where we need to locate blocks of
Again, we can use this generator in a proper for loop.
The idea is that a generator function allows us to filter or reduce a sequence, producing a another sequence one value at a time. |
|||||||||||
|
|
Basically avoiding call-back functions when iterating over input maintaining state. See here and here for an overview of what can be done using generators. |
|||
|
|
|
I find this explanation which clears my doubt. Because there is a possibility that person who don't know Return The return statement is where all the local variables are destroyed and the resulting value is given back (returned) to the caller. Should the same function be called some time later, the function will get a fresh new set of variables. Yield But what if the local variables aren't thrown away when we exit a function? This implies that we can
So that's the difference between return and yield statements in Python. Yield statement is what makes a function a generator function. So Generators are a simple and powerful tool for creating iterators. They are written like regular functions but use the yield statement whenever they want to return data. Each time next() is called, the generator resumes where it left-off (it remembers all the data values and which statement was last executed). |
||||
|
|
|
Piles of stuff. Any time you want to generate a sequence of items, but don't want to have to 'materialize' them all into a list at once. For example, you could have a simple generator that returns prime numbers:
You could then use that to generate the products of subsequent primes:
These are fairly trivial examples, but you can see how it can be useful for processing large (potentially infinite!) datasets without generating them in advance, which is only one of the more obvious uses. |
|||||||
|
|
I use generators when our web server is acting as a proxy:
|
|||
|
|