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