map method to convert data typrpython 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: use map in python to take input
c = map(int,input().split)