The Out of Scope Variable
We'll cover the following...
Want to hear a joke? Sorry, humor is out of the scope of this course.
Press + to interact
a = 1def some_func():print(a)def another_func():a += 1print(a)some_func()another_func()
Why did we get an error?
Explanation
- When