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