oldlist = ["Peter", "Paul", "Mary"] newlist = list(map(str.upper, oldlist)) print(newlist) ['PETER', 'PAUL', 'MARY']