From 3c159491de269ff5113d0740c234bfa3106a4d23 Mon Sep 17 00:00:00 2001 From: Abhyuday-Goyal <107510592+Abhyuday-Goyal@users.noreply.github.com> Date: Sat, 6 Aug 2022 01:22:12 +0530 Subject: [PATCH] Update returnfun.py --- CODES.PY/returnfun.py | 2 ++ 1 file changed, 2 insertions(+) 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) +