Instaed of: newList = [] untuk kata dalam wordlist: newList.append (word.upper ())

newlist = map(str.upper, wordlist)
Leif Georg