What is the difference between package and module in Python?

  • module always is a .py file. module is a concept that exists in the Python runtime, It is a Python object.
  • module 是很多python object的容器
  • Package是一种特殊的module,只是多了个__path__,为了区别package和module,一个package可以是一个包含module的文件夹,

Import

  • Import是把一个操作系统里的文件变成Python里的package或者module的过程。