Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

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
...