instaed von: newList = [] für Wort in WordList: newList.append (Word.upper ())

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