diff --git a/CODES.PY/returnfun.py b/CODES.PY/returnfun.py index b243a57..d148990 100644 --- a/CODES.PY/returnfun.py +++ b/CODES.PY/returnfun.py @@ -1,5 +1,7 @@ +#Return function in python is used to terminate the function and assign a value to the function which will be returned upon calling the function @gfg_decorator def hello_decorator(): print("gfg") hello_decorator=gfg_decorator(hello_decorator) +