Python Learning 4 Functional Programming (Liaoche)

Source: Internet
Author: User

First, higher order function

1. Variables can point to functions

For example, Python's built-in absolute value function abs ():

f=ABSprint(f (-10))

The output is 10.

2, function name is also variable

Any function name is a variable, and if it is assigned, it can no longer be used for function calls:

abs=10Print(ABS ( -8))    #abs points to 10, can no longer use ABS () to call the function, will error

Note: Because the abs function is actually defined in import builtins the module, so to make abs the change of the pointer in the other module also takes effect, to use the import builtins; builtins.abs = ten .

3. Incoming function

A function can receive another function as a parameter, and this function is called a higher order function. For example:

def Add (x, Y, f):     return f (x) + f (y) a=add ( -5,6, ABS)print(a)

Output is 11

Second, Map/reduce

Python Learning 4 Functional Programming (Liaoche)

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.