# PROGRAM Global and Loval Variables global_var = 4 def MyMethod(): print(global_var) # END MyMethod MyMethod() print(global_var) #END.