Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
1.1k views
in Computer by (53.9k points)

How do we share global variables across modules in Python?

1 Answer

0 votes
by (90.2k points)
selected by
 
Best answer

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 we want a, b & c to share between modules. config.py : 

a = 0 

b = 0 

c = 0 modulel.py: 

import config 

config.a = 1 

config.b = 2 

config.c = 3 

• print ” a, b & c are : ” , config.a, config.b, config.c

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...