Python · Functions: Parameters & Scope
What does the `/` do here, and which call is illegal? ``` def f(a, b, /, c, d): print(a, b, c, d) f(1, b=2, c=3, d=4) f(1, 2, c=3, d=4) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
