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

Healthy Programmmer PROJECT

Difference Between Procedural and Non-procedural Language

Dictionary Practice Question