Python wendet eine Funktion auf eine Liste an, die in die Stelle stehen

>>> mylis = ['this is test', 'another test']
>>> [item.upper() for item in mylis]
['THIS IS TEST', 'ANOTHER TEST']
Nervous Nightingale