Result Size:
625 x 571
demo_variables_global2.py:
x = "awesome" def myfunc(): x = "fantastic" print("Python is " + x) myfunc() print("Python is " + x)
x
x
=
"awesome"
def
myfunc
():
x
=
"fantastic"
print
(
"Python is "
+
x
)
myfunc
()
print
(
"Python is "
+
x
)
C:\Users\My Name>python demo_variables_global2.py
Python is fantastic
Python is awesome