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
Post a Comment