Scope
In this lesson, you'll learn about the scope of variables in Python.
We'll cover the following...
Introduction to scope
The scope of a name is the part of the program in which the name has meaning and can be used. Python’s scope rules are unusual because they follow an “LEGB rule”: Local, Enclosed, G ...