8.7. Scope - Local vs Global VariablesĀ¶

Scope refers to the parts of the program where a variable/object are visible and can be referred to. When you have program that has no functions, all of the variables are global. But very few real programs in the world work that way. Most programs are divided up into functions, and global variables are passed around, while inside of functions there are also local variables that are used. In this section we will take a look at the differences between local and global variables.

8.7.1. Variable and parameters are localĀ¶

An assignment statement in a function creates a local variable for the variable on the left hand side of the assignment operator. It is called local because this variable only exists inside the function and you cannot use it outside. For example, consider again the square function:

Try running this in CodeLens. When a function is invoked in CodeLens, the local scope is separated from global scope by a blue box. Variables in the local scope will be placed in the blue box while global variables will stay in the global frame. If you press the ā€˜last >>ā€™ button you will see an error message. When we try to use y on line 6 (outside the function) Python looks for a global variable named y but does not find one. This results in the error: Name Error: 'y' is not defined.

The variable y only exists while the function is being executed ā€” we call this its lifetime. When the execution of the function terminates (returns), the local variables are destroyed. CodeLens helps you visualize this because the local variables disappear after the function returns. Go back and step through the statements paying particular attention to the variables that are created when the function is called. Note when they are subsequently destroyed as the function returns.

Formal parameters are also local and act like local variables. For example, the lifetime of x begins when square is called, and its lifetime ends when the function completes its execution.

So it is not possible for a function to set some local variable to a value, complete its execution, and then when it is called again next time, recover the local variable. Each call of the function creates new local variables, and their lifetimes expire when the function returns to the caller.

8.7.2. Global VariablesĀ¶

Variable names that are at the top-level, not inside any function definition, are called global.

It is legal for a function to access a global variable that isnā€™t passed in as a parameter. However, this is considered bad form by nearly all programmers and should be avoided in most cases. This subsection includes some examples that illustrate the potential interactions of global and local variables. These will help you understand exactly how Python works. Hopefully, they will also convince you that things can get pretty confusing when you mix local and global variables, and that you really shouldnā€™t do it.

Look at the following, nonsensical variation of the square function.

Although the badsquare function works, it is silly and poorly written. We have done it here to illustrate an important rule about how variables are looked up in Python. First, Python looks at the variables that are defined as local variables in the function. We call this the local scope. If the variable name is not found in the local scope, then Python looks at the global variables, or global scope. This is exactly the case illustrated in the code above. power is not found locally in badsquare but it does exist globally. The appropriate way to write this function would be to pass power as a parameter. For practice, you should rewrite the badsquare example to have a second parameter called power.

There is another variation on this theme of local versus global variables. Assignment statements in the local function cannot change variables defined outside the function. Consider the following CodeLens example:

Activity: CodeLens 8.7.2.2 (clens8_7_1)

Now step through the code. What do you notice about the values of variable power in the local scope compared to the variable power in the global scope?

The value of power in the local scope was different than the global scope. That is because in this example power was used on the left hand side of the assignment statement power = p. When a variable name is used on the left hand side of an assignment statement inside a function, Python creates a local variable. When a local variable has the same name as a global variable we say that the local shadows the global. A shadow means that the global variable cannot be accessed by Python because the local variable will be found first. This is another good reason not to use global variables. As you can see, it makes your code confusing and difficult to understand.

If you really want to change the value of a global variable inside a function, you can can do it by explicitly declaring the variable to be global, as in the example below. Again, you should not do this in your code. The example is here only to cement your understanding of how Python works.

Activity: CodeLens 8.7.2.3 (clens8_7_2)

To cement all of these ideas even further letā€™s look at one final example. Inside the square function we are going to make an assignment to the parameter x Thereā€™s no good reason to do this other than to emphasize the fact that the parameter x is a local variable. If you step through the example in CodeLens you will see that although x is 0 in the local variables for square, the x in the global scope remains 2. This is confusing to many beginning programmers who think that an assignment to a formal parameter will cause a change to the value of the variable that was used as the actual parameter, especially when the two share the same name. But this example demonstrates that that is clearly not how Python operates.

Activity: CodeLens 8.7.2.4 (clens8_7_3)

Check Your Understanding

You have attempted of activities on this page