How to implement cross-file global variables in python

Source: Internet
Author: User
This article mainly introduces how to implement cross-file global variables in python. For more information about how to use Python to compile applications, sometimes the same global variable is transferred between multiple files. This article provides the following solutions for your reference.

File 1: globalvar. py

#!/usr/bin/env python2.7 class GlobalVar:   db_handle = None   mq_client = None def set_db_handle(db):   GlobalVar.db_handle = db def get_db_handle():   return GlobalVar.db_handle def set_mq_client(mq_cli):   GlobalVar.mq_client = mq_cli def get_mq_client():   return GlobalVar.mq_client 

File 2: set. py

import globalvar as GlobalVar def set():   GlobalVar.set_mq_client(10)   print "------set mq_client in set.py------mq_client: " + str(GlobalVar.get_mq_client()) 

File 3: get. py

#!/usr/bin/env python2.7 import globalvar as GlobalVar def get():   print "------get mq_client in get.py------mq_client: " + str(GlobalVar.get_mq_client()) 

File 4: main. py

#!/usr/bin/env python2.7 import set import get set.set() get.get() 

Globalvar. py defines two global variables and assigns values to the set function in set. py. The get function value in the get. py file is printed. The main. py function acts as the application entry and calls set and get.

In this way, you can see the cross-file use of global variables in a complete application.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.