Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do we share global variables across modules in Python?



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

Post New Answer

More Python Interview Questions

How to use the slicing operator in Python?

3 Answers  


What is a lambda in programming?

0 Answers  


What is the use of try, except, finally and raise in error handling?

0 Answers  


How do you invoke the python interpreter for interactive use?

0 Answers  


Python list of lists, changes reflected across sublists unexpectedly

0 Answers  


Explain the ternary operator in python?

0 Answers  


Explain the use of the split function in python?

0 Answers  


In python, how do I check if a list is empty?

0 Answers  


What is the use of isupper keyword in python?

0 Answers  


Can we concat bytes to str?

0 Answers  


How do you debug a python program?

0 Answers  


What is the output of print str + “test” if str = ‘hello world!’?

0 Answers  


Categories