python_scope_4.py:
x
 
x = 100
def myfunc():
  x = 200
  print(x)
myfunc()
print(x)