Map () function, map function

Source: Internet
Author: User

Map () function, map function
Map () function

Map ()Is a Python built-in high-level function that receivesFunction fAnd oneListFunction f is used in turn on each element of the list to obtain 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 returns a new list instead of changing the original 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.

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.