python-learning/while.py
2025-04-29 17:38:46 +02:00

13 lines
158 B
Python

# While Loop
zahl1 = 9
zahl2 = 1
# while statement & statement
while zahl1 > zahl2:
zahl2+=1
print(zahl2)
# while true
while True:
print("oki")