Run »
Result Size:
625 x 571
x = "awesome" def myfunc(): global x x = "fantastic" myfunc() print("Python is " + x)
x
x
=
"awesome"
def
myfunc
():
global
x
x
=
"fantastic"
myfunc
()
print
(
"Python is "
+
x
)
Python is fantastic