Import enclosing module : Import « Language Basics « Python
- Python
- Language Basics
- Import
Import enclosing module

X = 99
def selector():
import __main__
print __main__.X # qualify to get to global version of name
X = 88 # unqualified X classified as local
print X # prints local version of name
selector()
Related examples in the same category