Schleifen mit Variablen, die zählen
n = 1
while n <= 5:
print(n * 2)
n = n + 1
Important Impala
n = 1
while n <= 5:
print(n * 2)
n = n + 1