Script or library - from import
from mymodule import run
print("Name space in import_mymodule.py ", __name__)
run()
$ python import_from_mymodule.py
Name space in mymodule.py mymodule
Name space in import_mymodule.py __main__
run in mymodule
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
from mymodule import run
print("Name space in import_mymodule.py ", __name__)
run()
$ python import_from_mymodule.py
Name space in mymodule.py mymodule
Name space in import_mymodule.py __main__
run in mymodule