Python · Functions: Parameters & Scope
What does this print, and what keyword makes it work? ``` def outer(): res = 1 def inner(): res += 1 inner() print(res) outer() ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
