Python · Decorators
What does this print? ```python def with_timing(fn): def wrapper(*a, **k): return fn(*a, **k) return wrapper @with_timing def nap(): """sleep""" print(nap.__name__) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
