DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / basics / while1.py
123456789101112
# 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