Result Size: 1264 x 19
x
 
def myfunc():
  global x
  x = "fantastic"
myfunc()
print("Python is " + x)
        
Python is fantastic