Difference Between Local and Global Variable in Python

Difference Between Local and Global Variable in Python

In this python post, you will learn difference between global and local variables in python.

As the name suggests, the global variable can be declared both inside and outside the function in Python. The local variable can be defined inside the only function.

Understand the global and local variables in python with the example. How the local and global variables are defined and how they are used in the Python program.

Local Variable

Which variables are made inside the function in python. They are called local variables. Local variables can be used only inside the function in python.

For example:

def valfun():
   x = "great"
   print("Python is " + x)
 valfun()

Global Variable

Which variables are made outside the function. They are called global variables. Global variables can be used both inside and outside the function in python.

Declaring global variables in python without using global keyword

For example:

x = "great"
 def valfun():
   print("Python is " + x)
 valfun()

Declaring global variables in python using global keyword

Generally, when you create a variable in python inside any function, that is local variable. And you can not use this variable outside of the function.

You can create/define a global variable inside the function by using the global keyword.

For example:

def valfun():
   global x
   x = "powerful"
 valfun()
 print("Python is " + x)

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *