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)