Python · Decorators
What does this print? ```python def a(f): def w(): print("a"); f() return w def b(f): def w(): print("b"); f() return w @a @b def g(): print("g") g() ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
