04-schleife/for-demo.py | patch | view | raw | blame | history | |
04-schleife/kleine-ein-mal-eins.py | ●●●●● patch | view | raw | blame | history | |
04-schleife/multiplication.py | ●●●●● patch | view | raw | blame | history |
04-schleife/for-demo.py
04-schleife/kleine-ein-mal-eins.py
@@ -14,7 +14,7 @@ print("Zahl zu klein") else: print("Das ist definitiv keine richtige Antwort!") #break break else: print("Du hast richtig gerechnet!") 04-schleife/multiplication.py
@@ -1,5 +1,5 @@ for y in range(2,10): for x in range(1,10): expr = f"{y} x {x}={y*x:x}" expr = f"{y} x {x} = {y*x:x}" print(expr) print('-' * len(expr))