PythonExtra/tests/basics/while1.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
182 B
Python
Raw Normal View History

# basic while loop
x = 0
while x < 2:
y = 0
while y < 2:
z = 0
while z < 2:
z = z + 1
print(x, y, z)
y = y + 1
x = x + 1