Python Decorators
In Python, a decorator is a special kind of function that modifies the behavior of another function. Decorators are often implemented as closures, which are nested functions that can remember and access variables from their containing function, even after the containing function has finished executing. But before diving deep into decorators let us understand some […]
January 17, 2023 | python | No comments