Result Size: 625 x 571
demo_ref_keyword_global.py:
x
 
#create a function:
def myfunction():
  global x
  x = "hello"
#execute the function:
myfunction()
#x should now be global, and accessible in the global scope.
print(x)
C:\Users\My Name>python demo_keyword_global.py
hello