gpt4 book ai didi

python - Python中的模块和库有什么区别?

转载 作者:IT老高 更新时间:2023-10-28 21:44:54 25 4
gpt4 key购买 nike

我有 Java 方面的背景,而且我是 Python 新手。在继续之前,我想确保我正确理解 Python 术语。

我对模块的理解是:一个脚本,可以被很多脚本导入,方便阅读。就像在 java 中你有一个类,并且该类可以被许多其他类导入。

我对的理解是:一个库包含许多模块,它们按用途分开。

我的问题是:库是否像包一样,你有一个包,例如称为food,然后:

  • chocolate.py
  • sweets.py
  • biscuts.py

是否包含在 food 包中?

或者库是否使用包,所以如果我们有另一个包drink:

  • milk.py
  • 果汁.py

包含在包中。 library 包含两个包?

此外,应用程序编程接口(interface) (API) 通常包含一组库,位于层次结构的顶部:

  1. API
  2. 图书馆
  3. 模块
  4. 脚本

所以一个 API 将包含 2-5 个?

最佳答案

来自 The Python Tutorial - Modules

  • 模块:

    A module is a file containing Python definitions and statements. The file name is the module name with the suffix .py appended.

  • :

    Packages are a way of structuring Python’s module namespace by using “dotted module names”.

如果您阅读了 import 的文档语句给出了更多细节,例如:

Python has only one type of module object, and all modules are of this type, regardless of whether the module is implemented in Python, C, or something else. To help organize modules and provide a naming hierarchy, Python has a concept of packages.

You can think of packages as the directories on a file system and modules as files within directories, but don’t take this analogy too literally since packages and modules need not originate from the file system. For the purposes of this documentation, we’ll use this convenient analogy of directories and files. Like file system directories, packages are organized hierarchically, and packages may themselves contain subpackages, as well as regular modules.

It’s important to keep in mind that all packages are modules, but not all modules are packages. Or put another way, packages are just a special kind of module. Specifically, any module that contains a __path__ attribute is considered a package.

因此,术语 module 指的是一个特定的实体:它是一个类,其实例是您在 python 程序中使用的 module 对象。以此类推,它还用于指代“创建”这些实例的文件系统中的文件。

脚本这个词用来指一个模块,其目的是被执行。它与“程序”或“应用程序”具有相同的含义,但它通常用于描述简单和小型的程序(即最多数百行的单个文件)。编写脚本需要几分钟或几小时。

library 一词只是一个通用术语,指的是一组旨在供许多应用程序使用的代码。它提供了一些可供特定应用程序使用的通用功能。

当一个模块/包/其他东西被“发布”时,人们通常把它称为一个库。库通常包含一个包或多个相关包,但它甚至可以是一个模块。

库通常不提供任何特定功能,即您不能“运行库”。

根据上下文,API 可以有不同的含义。例如:

  • 它可以定义像 DB API 这样的协议(protocol)或 buffer protocol .
  • 它可以定义如何与应用程序交互(例如 Python/C API)
  • 当与库/包相关时,它只是该库为其功能提供的接口(interface)(函数集/类/常量等)

无论如何,API 不是 python 代码。这是一个或多或少正式的描述。

关于python - Python中的模块和库有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19198166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com