LU04.A06 - Umwandlung von Strings in Großbuchstaben

Verwende die map-Funktion, um alle Strings in einer Liste in Großbuchstaben umzuwandeln.

Aufgabenstellung

Du hast eine Liste von Wörtern: ['apple', 'banana', 'cherry']. Deine Aufgabe ist es, die map-Funktion zu verwenden, um eine neue Liste zu erstellen, in der alle Wörter der ursprünglichen Liste in Großbuchstaben umgewandelt sind.

Vorlage

def to_uppercase(words):
    """
    Convert each word in the list to uppercase using the map function.
    Args:
    - words (list): List of words to be converted to uppercase.
 
    Returns:
    - list: List of words in uppercase.
    """
    # Your code here
    return uppercase_list
 
if __name__ == '__main__':
    words = ['apple', 'banana', 'cherry']
    uppercase_list = to_uppercase(words)
    print(uppercase_list)

https://github.com/templates-python/m323-lu04-a06-map

© Kevin Maurizi