Python · Decorators
What does this print? ```python def shout(f): def w(*a, **k): return f(*a, **k).upper() return w @shout def greet(n): return f"hi {n}" print(greet("sam")) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
