Functional Programming Tools: map : map « Buildin Function « Python






Functional Programming Tools: map

Functional Programming Tools: map
# "map(function, sequence)" calls function(item) for each of the sequence's 
# items and returns a list of the return values. For example, to compute some 
# cubes:

def cube(x): return x*x*x

print map(cube, range(1, 11))
           
       








Related examples in the same category

1.Do a map on list Do a map on list
2.Map: lambda function insideMap: lambda function inside
3.A sentence is split up into a list of wordsA sentence is split up into a list of words
4.Functional Programming Tools: map: More than one sequence may be passedFunctional Programming Tools: map: More than one sequence may be passed
5.Use mapUse map