How to use local variables in nested function in Python

2 Answers

0 votes
def function():
    print("function()")
    a = 111

    def nested_function():
        print("nested_function()")
        print(a)
    print("Before calling nested_function()")
    print(a)
    nested_function()
    print("After calling nested_function()")
    print(a)

function()


'''
run:

function()
Before calling nested_function()
111
nested_function()
111
After calling nested_function()
111

'''

 



answered Dec 18, 2017 by avibootz
0 votes
def function():
    print("function()")
    a = 111

    def nested_function():
        print("nested_function()")
        print(a)
    print("Before calling nested_function()")
    print(a)
    a = 222
    nested_function()
    print("After calling nested_function()")
    print(a)

function()


'''
run:

function()
Before calling nested_function()
111
nested_function()
222
After calling nested_function()
222

'''

 



answered Dec 18, 2017 by avibootz
...