map

Applies to: python, general

map transforms each value in a sequence using a function or lookup table.

list(map(abs, [-2, 3]))

See also: function, lambda