Python also uses variables to hold data. They also have a name and a type; however, in python, you don't have to declare the data type. Instead, you can create a python variable as follows.

class_number = 4;

In the above example, the variable 'class_number' has the value of 4; it is an integer data type. And unlike other programming languages, you don't need to declare a variable without initializing. 

Want a Top Software Development Job? Start Here!

Full Stack Developer - MERN StackExplore Program
Want a Top Software Development Job? Start Here!

What Does Variable Scope in Python Mean?

Variable scope means the area in which parts of a program can access the variable. There are four variable scopes in python:

  1. Local
  2. Global
  3. Enclosing
  4. Built-in

In this article, you will learn the first two types. You will learn to create python variables with local and global scope.

What Is the Global Variable In Python?

In the programming world, a global variable in Python means having a scope throughout the program, i.e., a global variable value is accessible throughout the program unless shadowed.  

A global variable in Python is often declared as the top of the program. In other words, variables that are declared outside of a function are known as global variables.

You can access global variables in Python both inside and outside the function.  

Syntax:

X = “sampleGlobalValue”

Def fn1():

Get the Coding Skills You Need to Succeed

Full Stack Developer - MERN StackExplore Program
Get the Coding Skills You Need to Succeed

How to Create Global Variables in Python?

To create a global variable in Python, you need to declare the variable outside the function or in a global scope.

Example: 

GlobalVariableinPython_1

Output:

GlobalVariableinPython_2 

How to Access the Global Variable Inside and Outside of the Function?

Example:

GlobalVariableinPython_3 

Output:

GlobalVariableinPython_4 

In the example depicted above, you saw a global variable declared and accessed both inside and outside of the function.  

So, you are accessing the value both inside and outside of the function, which is fine, but what happens if you try to modify the global scope variable value inside a function? 

See the example mentioned below to understand better. 

Example:

GlobalVariableinPython_5. 

Output:

GlobalVariableinPython_6 

As it is evident, this throws an error. When you try to modify the global variable value inside a function, it will throw UnboundLocalError, because while modifying Python treats x as a local variable, but x is also not defined inside the function (myfunc()).

That’s where the Global keyword comes into the picture. You will see the usage of Global Keywords in the following sections.

Want a Top Software Development Job? Start Here!

Full Stack Developer - MERN StackExplore Program
Want a Top Software Development Job? Start Here!

How to Create Variables With Local Scope in Python with Examples?

A local variable's scope is a function in which you declared it. To access the variable, you have to call the corresponding function. For example, you can create a local variable as shown below.

def superfunc()

#defining a function

x = fantastic

#defining a local variable

print("Python is" + x)

#accessing a local variable

superfunc()

#calling the function

Boost Your Coding Skills. Nail Your Next Interview

Full Stack Developer - MERN StackExplore Program
Boost Your Coding Skills. Nail Your Next Interview

Global Keyword

Global keyword is used to modify the global variable outside its current scope and meaning. It is used to make changes in the global variable in a local context. The keyword ‘Global’ is also used to create or declare a global variable inside a function.  

Usually, when you create a variable inside a function (a local variable), it can only be used within that function. That’s where the global keyword comes in the play, which helps to create global variables inside the function and which can be accessible in a global scope.

Syntax:

Def func():

Global variable

Example 1:

Use a global keyword to create a variable in the global scope.

GlobalVariableinPython_7 

Output:

GlobalVariableinPython_8 

Example 2:

Use a global keyword to change the value of the global variable inside the function.

GlobalVariableinPython_9 

Output:

GlobalVariableinPython_10 

You have seen what ‘global’ keywords are, their examples, and how to use global keywords. But Python has some basic rules to use the ‘global’ keyword.

Let’s see Global in Nested functions.

When you declare a global keyword variable inside the nested function and when you change the global keyword variable inside the nested function, it will reflect outside the local scope, since it is used as a global keyword.

Example:

Let's see an example for global in nested functions.

GlobalVariableinPython_11 

Output:

GlobalVariableinPython_12. 

You can see the above output for the global in nested functions. But maybe a quick following explanation will help for better understanding.

You have declared the global variable inside the inner() function, which is nested inside the main() function.

Want a Top Software Development Job? Start Here!

Full Stack Developer - MERN StackExplore Program
Want a Top Software Development Job? Start Here!

Before and after calling the inner(), the variable ‘integ’ takes the value of the local variable main i.e. integ = 20. Outside of the main() function, the variable ‘integ’ takes the value of the global keyword declared inside the inner() function i.e., integ = 20 as you used the global keyword inside the inner() function local scope. If you make any changes inside the inner() function global keyword variable ‘integ’, will reflect outside of the scope, as a behavior of the global keyword.

The fundamental rules of the ‘global’ keyword are as follows:

  • When you create a variable inside the function, it is in a local context by default
  • When you create or define a variable outside the function, by default it is a global context, there’s no need for a global keyword here
  • Global keywords can be used to read or modify the global variable inside the function
  • Using a global keyword outside of the function has no use or makes no effect.

How Can You Create Variables Using Global Scope in Python With Examples?

You can create a variable with global scope by initializing outside all the functions in a python program. And you can access the variable from anywhere in the python program. 

Creating a global variable is simple; you can do it as follows.

x = "wonderful"

#defining a global variable

def wonderfunc():

#declaring a function

print("Python is" + x)

#accessing the global variable

wonderfunc()

#calling the function

Become a Data Scientist with Hands-on Training!

Data Scientist Master’s ProgramExplore Program
Become a Data Scientist with Hands-on Training!

How to Use Global Keywords in Python With Examples?

If you use a variable inside a function, python thinks you are referring to a local variable. So use the global keyword to change a global variable within a python function. 

The following example shows the use of global keywords in a python program.

x = 5

#initializing a global variable

def life()

#defining a function

global x

#using global keyword 

x = x + 2

#changing the global variable

life()

#calling the function

print(x)

#accessing the global variable

Local Variables

The following example shows a mistake. 

Example 1: Accessing Local Variable Outside the Scope

def loc() 

#defining loc() function

y = "local"

# declaring y locally

loc()

# calling the function loc()

print(y)

# accessing the variable y

In the above program, you are trying to access 'y' defined in the function loc(). And the line print(y) will give you a Name Error: name 'y' is not defined. 

The following example shows how to rewrite the above program.

Example 2: Create a Local Variable

def loc()

#defining the function

y = "local"

# declaring the local variable

print(y)

#locally accessing the local variable

loc()

#calling a function

Preparing Your Blockchain Career for 2024

Free Webinar | 5 Dec, Tuesday | 9 PM ISTRegister Now
Preparing Your Blockchain Career for 2024

Global and Local Variables

As you can not access a local variable from outside a function, it does not matter if the global and the local variables have the same name. Below you can find an example where there are two variables. One is global, and the other is local. Both have the same name. 

Example1: Global Variable and Local Variable With the Same Name

x = 5; 

#initializing a global variable

def man():

#defining a function man()

x = 4

#initializing a local variable

print("local x:", x) 

# accessing a local variable

man()

#calling the man function

print("global x:", x)

#accessing a local variable

In the above example, the print function in the man () function accesses the local variable x with a value of 4. And the print function outside accesses the local variable with a value of 5.  

Difference Between Global and Local Variables

Let us see an example of how global and local variables behave in the same code.

Example:

GlobalVariableinPython_13 

Output:

GlobalVariableinPython_14 

Explanation:

Here in the program above, you declared x as a global and y as a local variable in the same program. Then it tried to modify the global variable using the global keyword in the local function and printing both gx and ly.

Once you called function1(), the value of gx became global global. As you tried to modify as gx*2, it printed ‘global’ two times. After this, you printed the local variable ly, which displayed the local variable value i.e., again ‘local’.

Difference Between Global and Nonlocal Variables

When a variable is either in local or global scope, it is called a nonlocal variable. Nonlocal variables are defined in the nested function whose scope is not defined.

Example:

GlobalVariableinPython_15. 

Output:

GlobalVariableinPython_16 

Explanation:

From the above program, it can be noticed that the nested function is innerfn(). Inside the innerfn(), you saw the use of a nonlocal keyword to create a nonlocal variable. The innerfn() is defined in the scope of outerfn(). If you make changes to the value of a nonlocal variable, they reflect in the local variable.

In conclusion, understanding the scope of python variables is essential for an error-free program. You can access the global variables from anywhere in the program. However, you can only access the local variables from the function. Additionally, if you need to change a global variable from a function, you need to declare that the variable is global. You can do this using the "global" keyword. 

Want a Top Software Development Job? Start Here!

Full Stack Developer - MERN StackExplore Program
Want a Top Software Development Job? Start Here!

Conclusion

Variables are one of the most basic elements of a programming language. It is an abstraction layer for the memory cells that contain the actual value. Global, Local and Nonlocal types of variables help the programmer to access some values entirely in the program scope, or some values that are limited to within the function.

In this article, you learned what a global variable is in Python, how to define global variables in Python, how to declare a global variable in Python, what is a global keyword, when to use a global keyword, the difference between global, local, and nonlocal variables along with some working examples.  

Join Post Graduate Program In Full Stack Web Development to learn more about this topic. This course will

give you the foundation for building full stack web apps using the Java programming language. You'll begin with the basics of JavaScript, and then venture into some of the more advanced concepts like Angular, Spring Boot, Hibernate, JSPs, and MVC. Now is a perfect time to get started on your career as a full stack web developer!

Have any questions for us? Leave them in the comments section of this article, and our experts will get back to you on them, as soon as possible!

Our Software Development Courses Duration And Fees

Software Development Course typically range from a few weeks to several months, with fees varying based on program and institution.

Program NameDurationFees
Caltech Coding Bootcamp

Cohort Starts: 17 Jun, 2024

6 Months$ 8,000
Automation Test Engineer

Cohort Starts: 17 Apr, 2024

11 Months$ 1,499
Full Stack Developer - MERN Stack

Cohort Starts: 24 Apr, 2024

6 Months$ 1,449
Full Stack Java Developer

Cohort Starts: 14 May, 2024

6 Months$ 1,449