LU04.A06 - Umwandlung von Strings in Großbuchstaben

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

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.

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)

© Kevin Maurizi

  • modul/m323/learningunits/lu04/aufgaben/map2.txt
  • Zuletzt geändert: 2024/03/28 14:07
  • von 127.0.0.1