There was an error while loading. Please reload this page.
1 parent 29ace5d commit e13e478Copy full SHA for e13e478
1 file changed
Level_03/for.py
@@ -19,6 +19,9 @@
19
print(key)
20
print(Dictionary[key])
21
22
+# besser:
23
+for key, value in Dictionary.items():
24
+ print(key, value)
25
26
# Ebenso kann ein Tupel oder eine Liste durchlaufen werden
27
0 commit comments