0 votes
by (240 points)
What is the limitation of the map () function?

1 Answer

0 votes
by (1.4k points)
The map() function applies a given to function to each item of an iterable and returns a list of the results. The returned value from map() (map object) can then be passed to functions like list() (to create a list), set() (to create a set) and so on.

Related questions

0 votes
1 answer
asked Apr 30, 2021 by map (120 points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Nov 28, 2019 by function (400 points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
...