Skip to content

Instantly share code, notes, and snippets.

@esenthil2018
Created January 15, 2022 20:50
Show Gist options
  • Save esenthil2018/78d41a2c91557c52ba9859d35d6825d9 to your computer and use it in GitHub Desktop.
Save esenthil2018/78d41a2c91557c52ba9859d35d6825d9 to your computer and use it in GitHub Desktop.
def decor_func(fn):
def wrapper_func(*args,**kwargs):
"""
This is the wrapper function
"""
print('Execute this code before the main function is executed')
return fn(*args, **kwargs)
return wrapper_func
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment