← Back to archive

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 partial
def f(a, b, c):
return (a, b, c)
g = partial(f, b=10)
print(g(1, c=3))
Modern
4 attempts left

Answer & explanation