You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
182 B
12 lines
182 B
# 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
|
|
|