How do we share global variables across modules in Python?
Answer / chaitanya
We can create a config file & store the entire global variable to be shared across modules or script in it. By simply importing config, the entire global variable defined it will be available for use in other modules.
For example I want a, b & c to share between modules.
config.py :
a=0
b=0
c=0
module1.py:
import config
config.a = 1
config.b =2
config.c=3
print “ a, b & resp. are : “ , config.a, config.b, config.c
------------------------------------------------------------------------
output of module1.py will be
1 2 3
| Is This Answer Correct ? | 0 Yes | 0 No |
Why python is faster than java?
What does none mean in python?
When to use list vs. tuple vs. dictionary vs. set?
What are python decorators? 8) What is the difference ...
What does ord () do in python?
What are the attributes?
Can constructor be private?
How many functions are in python?
How to find the index of an element in a list python?
What is speech_recognition? Does this ship with python by default?
What are the basic datatypes in python?
What is the encapsulation?