What does the built-in map() function do?
map()
It converts a complex value type into simpler value types.
It applies a function to each item in an iterable and returns the value of that function.
It creates a path from multiple values in an iterable to a single value.
It creates a mapping between two different elements of different iterables.