liste = ["Anna", "Berta", "Charly", "Daniel", "Emil", "Berta", "Ida"] print(liste) print(len(liste)) print(liste[0]) print(liste[4]) print("Peter" in liste) print("Daniel" in liste) print(liste) liste[4] = "Zeus" print(liste) for s in liste: print(s) notenliste = [6, 5, 4, 3, 2, 1, 6] nr = 0 while nr < len(liste): print("Schüler(in) " + liste[nr] + " hat die Note " + str(notenliste[nr]) + ".") nr = nr + 1