将多个模块组织在一个文件夹中,称为 package。

例如:

- package A(文件夹)包含模块 B(.py 文件)

导入方式:

- import A.B

- from A.B import ###

在大规模 Python 程序编写中非常有用。