Kapitel 18: Generatoren und list comprehension

This commit is contained in:
2023-06-08 19:38:09 +02:00
parent 9e78b44184
commit 124bff5e06
9 changed files with 62 additions and 0 deletions

4
teil18/zahlen_for.py Normal file
View File

@@ -0,0 +1,4 @@
zahlen = [1,2,3,4,5,6,7,8,9,10]
for n in zahlen:
print(n)