Q:

Write a Python program to access a function inside a function

0

Write a Python program to access a function inside a function

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used python 3.7 compiler for debugging purpose.

def test(a):
        def add(b):
                nonlocal a
                a += 1
                return a+b
        return add
func= test(10)
print(func(10))

Result:
21

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Write a Python function to create and print a list...