A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 9 Ω


# Python Programme Backslash


… # Nach dem Pfeil kommt ein Semikolon ⭢ ==== Basiswissen ====

# Mit dem Backslash kann eine Zeile in mehrere Zeilen aufspalten

if 1 == 2-1 and 10-5 == 5 and 4*3 == 12:
print ("Alles OK")

# Die if-Zeile kann man auch in drei Zeilen schreiben:

if 1 == 2-1 and 10-5 == 5 and 4*3 == 12:
print ("Alles OK")

# Das Programm schreibt zweimal OK.
# Ende des Beispielprogramms