nonlocal python code example
Example 1: python nonlocal
def to_string(node):
def actual_recursive(node):
nonlocal a_str # ~global, can modify surrounding function's scope.
a_str += str(node.val)
if node.next != None:
actual_recursive(node.next)
a_str = ''
actual_recursive(node)
return a_str
Example 2: python access global variable
globvar = 0
def set_globvar_to_one():
global globvar # Needed to modify global copy of globvar
globvar = 1
def print_globvar():
print(globvar) # No need for global declaration to read value of globvar
set_globvar_to_one()
print_globvar() # Prints 1
Example 3: global variables python
global x
x=1