Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardPythonkeyword-only argsSingle-choice MCQ1,743 views

What will this code output?

def f(x, y, /, z=10): return x + y + z print(f(1, 2))