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