Stdle #61 · scope · 2026-08-06
What does this Python snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
x = 1def f(): print(x)print(x)f()x = 2f()Scope
Stdle #61 · scope · 2026-08-06
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
x = 1def f(): print(x)print(x)f()x = 2f()