from map to set python 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: map in python 3
map(function, iterable, ...)