Decorators In Pythons

https://hindi.goforgyan.com/python/function-decorators-and-decorators-in-python-in-hindi/

 


def upper(function):
def wraper():
func=function()
makeUpper=func.upper()
return makeUpper
return wraper


def say():
return "Hello hi"



deco=upper(say)
print(deco())

Comments

Popular posts from this blog

React Installation with Vite and Tailwind css (Steps to Installation)

Insert Data In mongoDb

Class methods as an alternative Constructor