You have already completed these exercises!
Do you want to take them again?
You completed the Python Global Variable Exercises from W3Schools.com
Share on:
Consider the following code:x = 'awesome'def myfunc(): x = 'fantastic'myfunc()print('Python is ' + x)What will be the printed result?
x = 'awesome'def myfunc(): x = 'fantastic'myfunc()print('Python is ' + x)