Posted: 2025 03 09 13:28:19
Last modified: 2025 03 09 14:28:19
Einführung in die Python-Programmierung: Ein Leitfaden für Anfänger
Variablen und Datentypen
x = 5 y = "hallo"
Operatoren
Kontrollstrukturen
x = 5 if x > 10: print("x ist größer als 10") else: print("x ist kleiner gleich 10")
fruits = ["apple", "banana", "cherry"] for fruit in fruits: print(fruit)
Funktionen
def greet(name): print("Hallo, " + name + "!") greet("John") # Output: Hallo, John!