Map () function in python and map function in python

Source: Internet
Author: User

Map () function in python and map function in python

Map () is a high-order function built in Python. It receives a function f and a list, and uses function f in turn on each element of the list, get a new list and return it.

For example, for list [1, 2, 3, 4, 5, 6, 7, 8, 9]

If you want to square each element of the list, you can use the map () function:

Therefore, you only need to pass in the f (x) = x * x function to complete the computation using the map () function:

def f(x):    return x*xprint map(f, [1, 2, 3, 4, 5, 6, 7, 8, 9])

Output result:

[1, 4, 9, 10, 25, 36, 49, 64, 81]

Note: The map () function does not change the original list, but returns a new list.

The map () function can be used to convert a list to another list. You only need to pass in the conversion function.

Because the list element can be of any type, map () can not only process a list that only contains values, but also process a list that contains any type, as long as the input function f can process this data type.

Example:

Assume that the English name entered by the user is invalid, and the first letter is not followed by the lowercase letter rules, use the map () function to put a list (including several nonstandard English names) to a list containing standardized English names:

Input: ['Adam ', 'lisa', 'bart']
Output: ['Adam ', 'lisa', 'bart']

Method:

def format_name(s):return s.capitalize()print map(format_name, ['adam', 'LISA', 'barT'])

Result:

>>> ['Adam', 'Lisa', 'Bart']

 

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.