Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python function return function

def a():
    def b():
        return "xxxxxxxxx"
    return b
        

print(a()())
Source by www.py4e.com #
 
PREVIOUS NEXT
Tagged: #python #function #return #function
ADD COMMENT
Topic
Name
4+6 =