Question: Python pls 3a. (12 pts) Complete the decorator class Track_calls which remembers the function it is decorating and tracks the number of times that function

Python pls
3a. (12 pts) Complete the decorator class Track_calls which remembers the function it is decorating and tracks the number of times that function is called. The decorator object overloads the_call_ method such that it increments the counter tracking the number of calls each time the function is called. It also provides two methods: a called_count method which returns the number of times the decorated function has been called, and a reset method for resetting the call count to zero. So, if we decorated a function foo with the Track_calls decorator, and called foo five times, the call foo.called_count() would return 5, and calling foo.reset() would reset that count to zero. class Track_calls: def __init__(self, f): def _call_(self, *args, **kargs): def called(self): def reset(self)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
