Stdle #30 · modern · 2026-07-06
What does this Python snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
def f(a, *, b): return a - bprint(f(10, b=3))Modern
Stdle #30 · modern · 2026-07-06
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
def f(a, *, b): return a - bprint(f(10, b=3))