Stdle #50 · iteration · 2026-07-26
What does this Python snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
n = 0while n < 3: n += 1else: print("loop ended")print(n)Iteration
Stdle #50 · iteration · 2026-07-26
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
n = 0while n < 3: n += 1else: print("loop ended")print(n)