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