Python function Programming Guide (4): generator details, python programming guide

Source: Internet
Author: User

Python function Programming Guide (4): generator details, python programming guide

4. generator)

4.1. Introduction to generators

First, be sure that the generator is an iterator. The generator has the next method and has the same behavior as the iterator, which means that the generator can also be used in a Python for loop. In addition, the special syntax support for generators makes it much easier to compile a generator than to customize a conventional iterator, so the generator is also one of the most common features.

Since Python 2.5, [PEP 342: Implementing a collaborative program through an enhanced generator] adds more features to the generator, which means that the generator can do more work. This part will be introduced later.

4.2. Generator Functions

4.2.1. Use the generator function to define the generator

How to obtain a generator? First, let's look at a short piece of code:
The Code is as follows:
>>> Def get_0_1_2 ():
... Yield 0
... Yield 1
... Yield 2
...
>>> Get_0_1_2
<Function get_0_1_2 at 0x00B2CB70>

We defined a function get_0_1_2, and we can see that this is indeed a function type. However, unlike general functions, the get_0_1_2 function uses the keyword yield, which makes get_0_1_2 a generator function. The features of generator functions are as follows:

1. Call the generator function to return a generator;
The Code is as follows:
>>> Generator = get_0_1_2 ()
>>> Generator
<Generator object get_0_1_2 at 0x00B1C7D8>

2. when the next method of the generator is called for the first time, the generator starts to execute the generator function (instead of building the generator) until the execution (suspension) is paused in the case of yield ), the yield parameter is used as the return value of the next method;
The Code is as follows:
>>> Generator. next ()
0

3. then, each time the next method of the generator is called, the generator will resume the execution of the generator function from the position where the execution was paused last time until the execution of the generator function is paused again when yield is encountered, and the same is true, the yield parameter will be used as the return value of the next method;
The Code is as follows:
>>> Generator. next ()
1
>>> Generator. next ()
2

4. if the generator function ends when the next method is called (an empty return Statement is encountered or it reaches the end of the function body ), the next method call will throw a StopIteration exception (that is, the termination condition of the for loop );
The Code is as follows:
>>> Generator. next ()
Traceback (most recent call last ):
File "<stdin>", line 1, in <module>
StopIteration

5. every time a generator function is paused, all the variables in the function will be stored in the generator and restored when the function is resumed, similar to a closure, even if a generator function returns a generator, the stored variables are independent of each other.
Variables are not used in our small example, so another generator is defined here to demonstrate this feature:
The Code is as follows:
>>> Def maid ():
... A = B = 1
... Yield
... Yield B
... While True:
... A, B = B, a + B
... Yield B
...
>>> For num in maid ():
... If num> 100: break
... Print num,
...
1 1 2 3 5 8 13 21 34 55 89

Don't be surprised when you see while True. Because the generator can be suspended, the computation is delayed and the infinite loop does not matter. In this example, we define a generator to obtain the Fibonacci series.

4.2.2. FAQs about generator Functions
Next we will discuss some interesting topics about generators.

1. In your example, the generator function does not have any parameters. Can the generator function contain parameters?

Yes, of course. It also supports all the parameter forms of the function. You need to know that the generator function is also a function :)
eThe Code is as follows:
>>> Def counter (start = 0 ):
... While True:
... Yield start
... Start + = 1
...

This is a counter starting with a specified number.

2. Since the generator function is also a function, can it use return to output the return value?

If this is not the case, the generator function already has the default return value-generator, and you cannot return another value. However, it can end with an empty return statement. If you insist on specifying the return value for it, Python will give a syntax error exception at the defined position, as shown in the following code:
The Code is as follows:
>>> Def I _wanna_return ():
... Yield None
... Return None
...
File "<stdin>", line 3
SyntaxError: 'Return 'with argument inside generator

3. Well, the people need to ensure that the resources are released, and yield needs to be in try... finally. Will this be the case? (I just want to play with you) I have returned yield in finally!
Python will execute the code in finally when it really leaves try... finally, and I'm sorry to tell you that the pause is not counted! So you can guess the ending!
The Code is as follows:
>>> Def play_u ():
... Try:
... Yield 1
... Yield 2
... Yield 3
... Finally:
... Yield 0
...
>>> For val in play_u (): print val,
...
1 2 3 0

* This is different from return. Return is the true exit code block, so the finally clause is executed immediately at return.
* In addition, "yield in the try block with a finally clause" is defined in PEP 342, which means that only Python 2.5 and later versions support this syntax, A syntax error occurs in versions earlier than Python 2.4.

4. What if I need to integrate the iteration of another generator in the iteration process of the generator? It's so silly and naive to write it as below ..
The Code is as follows:
>>> Def sub_generator ():
... Yield 1
... Yield 2
... For val in counter (10): yield val
...

In this case, the syntax improvement has been defined in [PEP 380: Delegate to the sub-generator syntax]. It is said that it will be implemented in Python 3.3 and may be fed back to 2.x. After implementation, you can write it like this:
The Code is as follows:
>>> Def sub_generator ():
... Yield 1
... Yield 2
... Yield from counter (10)
File "<stdin>", line 4
Yield from counter (10)
^
SyntaxError: invalid syntax

What are syntax errors? Let's be naive now ~

More questions? Please reply to this article :)

4.3. coroutine)

A collaborative program (coroutine) generally refers to such a function:

1. There are different local variables and command pointers between each other, but global variables are still shared;
2. It can be conveniently suspended and restored, and there are multiple entry points and exit points;
3. Multiple collaborative programs run collaboratively. For example, the execution of A requires the result of B in the running process.

The feature of coroutine determines that only one coprocessor is running at a time (regardless of multithreading ). Thanks to this, the coroutine can directly pass objects without considering resource locks, or directly wake up other coroutine without active sleep, just like a thread with built-in locks. In scenarios that meet the characteristics of coroutine, it is easier to use coroutine than to use threads.

On the other hand, coroutine cannot be concurrent, but it also limits its application scenarios to a very narrow range. This feature allows coroutine to be more compared with conventional functions, instead of with the thread. Of course, threads are much more complex than coroutine threads and have more powerful functions. Therefore, I suggest you master the threads firmly: Python thread guide

In this section, I will not list examples of coroutine. The following describes the methods.

Python 2.5 enhances the generator to implement other features of the coroutine. In this version, the generator adds the following methods:

1. send (value ):

Send is another method to restore the generator except next. In Python 2.5, the yield statement is changed to the yield expression, which means that yield can now have a value, which is when the send method of the generator is called to resume execution, the parameter that calls the send method.
The Code is as follows:
>>> Def repeater ():
... N = 0
... While True:
... N = (yield n)
...
>>> R = repeater ()
>>> R. next ()
0
>>> R. send (10)
10

* Before sending a non-None value, the generator must be in the suspended state; otherwise, an exception will be thrown. However, the unstarted generator can still use None as the parameter to call send.
* If you use the next recovery generator, the yield expression value will be None.
2. close ():
This method is used to disable the generator. If you call next or send again after the generator is closed, a StopIteration exception is thrown.
3. throw (type, value = None, traceback = None ):
This method is used to throw an exception within the generator (where the generator is currently suspended or defined when it is not started.
* Don't regret the absence of coroutine examples. The most common use of coroutine is actually generator.

4.4. An interesting Library: pipe
In this section, I would like to brief you on pipe. Pipe is not a Python built-in library, if you install easy_install, you can install it directly, otherwise you need to download it yourself: http://pypi.python.org/pypi/pipe

This library is introduced because it shows us a very new way to use the iterator and generator: stream. Pipe regards iterated data as a stream. Similar to linux, pipe uses '|' to transmit data streams and defines a series of "stream processing" functions to accept and process data streams, and finally output the data stream again or summarize the data stream to get a result. Let's look at some examples.

First, it is very simple to use add to sum:

The Code is as follows:
>>> From pipe import *
>>> Range (5) | add
10

The where clause is used to obtain the number of parity values, which is similar to the built-in filter function to filter out qualified elements:
The Code is as follows:
>>> Range (5) | where (lambda x: x % 2 = 0) | add
6

Do you still remember the Fibonacci sequence generator we defined? Find all the even numbers less than 10000 in the number of columns and use take_while. functions with the same name as itertools have similar functions, intercepting elements until the condition is not true:
The Code is as follows:
>>> Fib = maid
>>> Fib () | where (lambda x: x % 2 = 0 )\
... | Take_while (lambda x: x <10000 )\
... | Add
3382

To apply a function to an element, you can use select, which is similar to the built-in Function map. To obtain a list, you can use as_list:

The Code is as follows:
>>> Fib () | select (lambda x: x ** 2) | take_while (lambda x: x <100) | as_list
[1, 1, 4, 9, 25, 64]

Pipe also includes more stream processing functions. You can even define a stream processing function by yourself. You only need to define a generator function and add the modifier Pipe. The following defines a stream processing function that gets elements until the index does not meet the conditions:

The Code is as follows:
>>> @ Pipe
... Def take_while_idx (iterable, predicate ):
... For idx, x in enumerate (iterable ):
... If predicate (idx): yield x
... Else: return
...

Use this stream processing function to obtain the first 10 digits of fib:

The Code is as follows:
>>> Fib () | take_while_idx (lambda x: x <10) | as_list
[1, 1, 2, 3, 5, 8, 13, 21, 34, 55]

More functions are not introduced here. You can view the pipe source files. For a total of less than 600 lines of files, 300 of them are documents, which contain a large number of examples.

Pipe is very simple to implement. It uses the Pipe decorator to aggregate common generator functions (or return the functions of the iterator) the proxy can be used on a common class instance that implements the _ ror _ method, but this idea is really interesting.

The full text of the functional programming guide is all over here. I hope this series of articles will help you. I hope you can see some programming methods outside of Structured Programming and use them in the right place :)

Tomorrow, I will sort out a directory for you to view and list some articles for your reference. Unfortunately, these articles are almost all in English. Please study English hard --#


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.