Import
- module
python
import module
import module as <name>- submodule
python
from module import submodule
from module import submodule as <sub_name>- all submodule
python
from module import *
# all the submodule of module is available here