Teil 2 Beispiele.

This commit is contained in:
2023-02-17 09:36:09 +01:00
commit 2d9a26f05c
8 changed files with 88 additions and 0 deletions

6
teil2/forloop.py Normal file
View File

@@ -0,0 +1,6 @@
namen = ["World", "Homer", "Marge", "Bart"]
for name in namen:
print("Hello " + name)
print('Das war es')