Stdle #10 · modern · 2026-06-16
What does this Python snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
from functools import partialdef f(a, b, c): return (a, b, c)g = partial(f, b=10)print(g(1, c=3))Modern
Stdle #10 · modern · 2026-06-16
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
from functools import partialdef f(a, b, c): return (a, b, c)g = partial(f, b=10)print(g(1, c=3))