## 包
### 包的概念
> 当一个项目中有很多个模块时,用包去封装,类似于文件夹。
### 导入包
import 包名
from 包 import 模块
==导入包的本质是导入了包的__init__.py文件。