Given a function
that takes one argument and returns a value, this function
applies f to each
element of a sequence f, and returns a new list containing the results of
each of those function applications.
S
>>> def add100(x): ... return x+100 ... >>> map(add100, (44,22,66)) [144, 122, 166]