fork download
  1. appMessage = 'hello'
  2. print(globals()['appMessage'])
  3. globals()['appMessage'] = 'WORLD'
  4.  
  5. print(globals()['appMessage'])
  6.  
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
hello
WORLD