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