Import enclosing module : Import « Language Basics « Python






Import enclosing module

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

1.Demonstrates the differences between the methods for importing modulesDemonstrates the differences between the methods for importing modules
2.Import a packageImport a package