import account
checking = account.Account("Deb", 86753.09)
Note that we can't refer to
Account directly; we have to refer to it through
its imported name, account.Account. If, for
convenience, we'd like to access the
Account class directly, we can tell Python to
import the class into our current namespace as well:
from account import Account
checking = Account("Deb", 86753.09)
Modules are compiled into bytecodes the first time they are imported,
allowing them to run faster and be more compact.
Given that a Python module is just a file, it will probably come as
no surprise that a Python package is simply a directory with modules
in it. To tag a directory as a package rather than just any
directory, create a file called _ _init_ _.py
(the same name as the method to initialize an object) within that
directory. Code within _ _init_ _.py will get
run whenever any part of its package is imported. Subpackages are, of
course, just subdirectories with their own _ _init_
_.py files.