Map functions
As the name suggests it maps the each object in iterable to function object, returning iterable.
Basic Syntax:
map(function_object, iterable1, iterable2,...)
For Example:
def multiply2(x):
return x * 2
map(multiply2, [1, 2, 3, 4])
In the above example, map executes multiply2 function for each element in the list i.e. 1, 2, 3, 4 and returns [2, 4, 6, 8]
Output:
[2, 4, 6, 8]