Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Python
hard
Python
keyword-only args
Single-choice MCQ
1,743 views
What will this code output?
def f(x, y, /, z=10): return x + y + z print(f(1, 2))