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