print("12") print("eins zwei drei vier fünf") print(" hallo heute ist Freitag")
print("3") print("dreizehn")
teil01 = "Haus" teil02 = "tier" kombi = teil01+teil02 print(kombi)
teil01 = "Auto" teil02 = "bahn" kombi = teil01+teil02 print(kombi)
zahl = input("Gib eine Zahl ein: ") zahl = int(5) print("Das Ergebnis lautet: ") print(zahl+10) zahl = input("Gib eine Zahl ein: ") zahl = int(16) print("Das Ergebnis lautet: ") print(zahl+43)
eingabe = input("Gib etwas ein: ") neu = eingabe print("Ausgabe: ") print(neu)
notenspiegel = [1,2,2,1,1,3,1,2,3,4,1,2,1,1,1,1] num_students = 0