Python · Decorators
What does this print? ```python import functools @functools.lru_cache def f(n): print("calc", n) return n*n f(3); f(3); f(4) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
