python function recursion and generator
1. What is recursion
If a function contains a call to itself, the function is recursive. As an algorithm, recursion is widely used in programming languages. It usually converts a large and complex problem into a smaller problem similar to the original problem to solve. The recursive strategy can be described with only a small number of programs. The multiple repeated calculations required to solve the problem greatly reduce the amount of code in the program. For example, to calculate the product of 9-digit numbers from 1 to 9, the intuitive algorithm is 1*2*3*4*5*6*7*8*9. If you want to calculate the product of 1-10000, the intuitive algorithm is difficult. Implemented, and recursion can be easily implemented. Please look at the example:
def fact(n):#计算给定数字到一的乘积 if n<=1: return 1 else: return n * fact(n-1) print (fact(7))
The result is: 5040
Let’s use an example to see the recursive execution process:
def calc(n): print(n) if n/2 > 1: res = calc(n/2) return n calc(8)
The result is:
8 4.0 2.0
Look at this example again:
def calc(n): print(n) if n/2 > 1: res = calc(n/2) print('res:',res) print("N:",n) return n calc(8)
The result is:
8 4.0 2.0 N: 2.0 res: 2.0 N: 4.0 res: 4.0 N: 8
#2. Generator
The generator is a function with a yield statement. A function or subroutine returns only once, but a generator can pause execution and return an intermediate result, return a value to the caller and pause execution. When the generator's next() method is called, it will continue exactly where it left off
See an example below:
def func(): print('11111111') yield [1] print(2222222222) yield 2 print(3333333333) yield 3 ret=func() r1=ret.__next__() print(r1) r2=ret.__next__() print(r2) r3=ret.__next__() print(r3)
The result is:
11111111 [1] 2222222222 2 3333333333 3
Since python’s for loop has next() call and processing of StopIteration, use a for loop instead Manually iterating through a generator (or iterator of that thing) is always much cleaner and prettier. Example:
def func(): print('11111111') yield [1] print(2222222222) yield 2 print(3333333333) yield 3 ret=func() for i in ret: print(i)
The result is the same as before.
These simple examples should give you a little idea of how generators work. In addition to next() to get the next generated value, users can send values back to the generator [send()], throw exceptions in the generator, and ask the generator to exit [close()]
Below is a simple example that demonstrates these features.
def counter(start_at=0): count = start_at while True: val = (yield count) if val is not None: count = val else: count += 1
The generator comes with an initialized value that counts up by 1 for each call to the generator [next()]. Users have the option of resetting this value if they really want to call send() with the new value instead of calling next(). This generator runs forever, so if you want to terminate it, call the close() method. If we run this code interactively, we will get the following output:
>>> count = counter(5) >>> count.next() 5 >>> count.next() 6 >>> count.send(9) 9 >>> count.next() 10 >>> count.close() >>> count.next() Traceback (most recent call last): File "<stdin>", line 1, in <module> StopIteration
The above article on in-depth understanding of Python function recursion and generators is what I share with you. The entire content is here, I hope it can give everyone a reference, and I also hope everyone will support the PHP Chinese website.
For more articles related to python function recursion and generators, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

To run Python code in Sublime Text, you need to install the Python plug-in first, then create a .py file and write the code, and finally press Ctrl B to run the code, and the output will be displayed in the console.

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.
