Python decorators simplified
Put simply: Decorators wrap a function, modifying its behavior.
A simple decorator example:
def my_decorator(function):
def wrapper():
print("Something is happening before the function is called.")
function()
# do other st...
alittlecoding.com2 min read