Python · Decorators
What does this print? ```python import functools @functools.lru_cache(maxsize=20) def fac(n): r = 1 for i in range(2, n+1): r *= i return r [fac(x) for x in [7,5,7,5]] print(fac.cache_info().hits) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
