Instaed of: newList = [] para Word in WordList: NewList.append (word.upper ())

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