Skip to content

Python global multiple variables | Example code

  • by

Setting up a variable in the module will work as a global variable you can define multiple variables in the class. The reason for this is that python treats classes as modules.

Python global multiple variables example

Simple example code defines multiple global variables from inside a class.

This is the best way to set up a list of global variables would be to set up a class for them in that module. You can call them, update them, etc. in any other function by referencing them as such:

main.py

class globalBS():
    bsA = "a"
    bsB = "b"

Test.py

from main import globalBS

print(globalBS.bsA)

globalBS.bsB = "Hello"
print(globalBS.bsB)

Output:

Python global multiple variables

Note: The global the statement does not create variables. It just makes Python look for them in the global namespace instead of the local namespace.

Source: stackoverflow.com

Do comment if you have any doubts or suggestions on this Python variable tutorial.

Note: IDE: PyCharm 2021.3.3 (Community Edition)

Windows 10

Python 3.10.1

All Python Examples are in Python 3, so Maybe its different from python 2 or upgraded versions.

Leave a Reply

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