Übung zum Slicing von Strings
Was ist die Ausgabe?
text = "Es gibt eine Reihe von Methoden nur für Strings" print(len(text)) # Ausgabe = 47 text_kurz = text[::5] Ausgabe = len(text_kurz) print(Ausgabe)