Let’s talk about lru_cache. Need of LRU Cache while Programming There may have been a time, when we have to run a function OVER and OVER again, let’s say we are using a for loop and we have to call a function for thousands of time: for i in range(10000): calls_a_expensive_function() If we could somehow, remove…