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