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()
1. | Demonstrates the differences between the methods for importing modules | ||
2. | Import a package |