python collection map code example
Example 1: mapping in python string
# mapping function
def uppercase(u):
return str(u.upper())
map_iterator = map(uppercase,['a','b','c'])
mylist = list(map_iterator)
print(mylist)
Example 2: python map
map(function_to_apply, list_of_inputs)