Python map function

Source: Internet
Author: User

The map () function map () is a Python built-in high-order function that receives a function f and a list, and then, by putting the function f on each element of the list in turn, gets a new list and returns. For example, for list [1, 2, 3, 4, 5, 6, 7, 8, 9if you want to square each element of the list, you can use the map () function: So we just need to pass in the function f (x)=x*x, you can use the map () function to complete this calculation:deff (x):returnx*xPrintMap (f, [1, 2, 3, 4, 5, 6, 7, 8, 9]) Output result: [1, 4, 9, 10, 25, 36, 49, 64, 81Note: the map () function does not change the original list, but instead returns a new list. With the map () function, you can convert a list to another list, just pass in the conversion function. Because the list contains elements that can be of any type, map () can not only handle lists that contain only numeric values, but in fact it can handle lists of any type, as long as the incoming function f can handle the data type. The task assumes that the user entered the English name is not standard, not according to the first letter capitalization, subsequent letter lowercase rules, use the map () function, a list (including some nonstandard English name) into a list containing the English name of the specification: input: ['Adam','LISA','BarT'] Output: ['Adam','Lisa','Bart']defFormat_name (s): S1=s[0:1].upper () +s[1:].lower (); returnS1;PrintMap (Format_name, ['Adam','LISA','BarT'])

The map () function is a python built-in high-order function that maps each element of the incoming list, returning a new map after the list

Python map function

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.