13 lines
158 B
Python
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") |