filmov
tv
Refer Global Variables inside a Function | Python Tutorials | Learn Python

Показать описание
Use Global Variables in Function easily!
-----------------------------------------------------------------------------------------------------------
Global Variables are something defined outside an entity which if needed to be referenced inside it, must be referenced using the "global" keyword.
-----------------------------------------------------------------------------------------------------------
Example:
------------------------------
testvar = 45;
def myfunction():
a = 10;
global testvar;
a = testvar + 10;
print(a);
myfunction();
------------------------------
Here if the "global" keyword is not used, it will throw an error as testvar is not a local variable of the function.
The output is 55.
-----------------------------------------------------------------------------------------------------------
Global Variables are something defined outside an entity which if needed to be referenced inside it, must be referenced using the "global" keyword.
-----------------------------------------------------------------------------------------------------------
Example:
------------------------------
testvar = 45;
def myfunction():
a = 10;
global testvar;
a = testvar + 10;
print(a);
myfunction();
------------------------------
Here if the "global" keyword is not used, it will throw an error as testvar is not a local variable of the function.
The output is 55.