Introduction Variables Data Types Numbers Casting Strings Boolean Operators Lists Tuples Dictionaries If-Else While Loops For Loops Functions Arrays Scope Modules User Input File Handling Python Maths

Welcome to the lesson on Python Scope

Scope

A variable is only available inside the place it is created. This is called scope.

Local Scope

A variable created inside a function belongs to the local scope of that function, and can only be used inside that function.

Example: A variable created inside a function is available inside that function:

syntax

Function Inside Function

the variable x is not available outside the function, but it is available for any function inside the function:

Examples: The local variable can be accessed from a function within the function:

syntax
Try it out yourself

Global Scope

A variable created in the main body of the Python code is a global variable and belongs to the global scope.

Global variables are available from within any scope, global and local.

Examples: A variable created outside of a function is global and can be used by anyone:

syntax

Naming Variables

If you operate with the same variable name inside and outside of a function, Python will treat them as two separate variables, one available in the global scope (outside the function) and one available in the local scope (inside the function):

Examples: The function will print the local x, and then the code will print the global x:

syntax
Try it out yourself

Global Keyword

If you need to create a global variable, but are stuck in the local scope, you can use the global keyword.

The global keyword makes the variable global.

Examples: If you use the global keyword, the variable belongs to the global scope:

syntax
Try it out yourself

Also, use the global keyword if you want to make a change to a global variable inside a function.

Examples: To change the value of a global variable inside a function, refer to the variable by using the global keyword:

syntax
Try it out yourself

End of Python Scope

You have learned Scope in simple terms. Let's proceed on to Next Topic.

Next Lesson
Back To Top