newlist = [] for word in wordlist: newlist.append(word.upper()) # instead, use this: newlist = map(str.upper, wordlist)