Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumPythonkeyword-only argsSingle-choice MCQ

With both a positional-only and a keyword-only parameter, which call succeeds?

def h(a, /, b, *, c): return a, b, c