...

/

The Out of Scope Variable

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 = 1
def some_func():
print(a)
def another_func():
a += 1
print(a)
some_func()
another_func()

Why did we get an error?

Explanation

  • When
...