Module scope variables : Module : Language Basics PYTHON examples


PYTHON examples » Language Basics » Module »

 

Module scope variables




//moda.py
X = 88               # my X: global to this file only

def f():
    global X         # change my X
    X = 99           # cannot see names in other modules



//////////////////////////////////////////////////////////////////
//Main.py

X = 11               # my X: global to this file only

import moda          # gain access to names in moda
moda.f()             # sets moda.X, not my X
print X, moda.X



           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Language Basics
» Module


Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in Unknown on line 0