# mapping function def uppercase(u): return str(u.upper()) map_iterator = map(uppercase,['a','b','c']) mylist = list(map_iterator) print(mylist)