Answers for "python nested function"

-1

what is used of nested function in python

def function1(): # outer function
    print ("Hello from outer function")
    def function2(): # inner function
        print ("Hello from inner function")
    function2()

function1()
Posted by: Guest on March-10-2021

Code answers related to "python nested function"

Python Answers by Framework

Browse Popular Code Answers by Language