Python · Functions: Parameters & Scope
What does this print, and why? ``` def my_sum(a, b, c=0, d=0): return a + b + c + d print(my_sum(d=1, b=3, c=2, a=1)) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
