python_ref_keyword_nonlocal_2.py:
x
 
def myfunc1():
  x = "Bill"
  def myfunc2():
    x = "hello"
  myfunc2() 
  return x
print(myfunc1())