words = ['apple', 'banana', 'fig'] result = [] # new list for w in words: result.append(w.capitalize()) print(result)