mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
13 lines
182 B
Python
13 lines
182 B
Python
# 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
|