
collections — Container datatypes — Python 3.14.3 documentation
2 days ago · collections — Container datatypes ¶ Source code: Lib/collections/__init__.py This module implements specialized container datatypes providing alternatives to Python’s general purpose built …
6. Modules — Python 3.14.3 documentation
3 days ago · Such a file is called a module; definitions from a module can be imported into other modules or into the main module (the collection of variables that you have access to in a script …
collections.abc — Abstract Base Classes for Containers - Python
2 days ago · This module provides abstract base classes that can be used to test whether a class provides a particular interface; for example, whether it is hashable or whether it is a mapping.
The Python Standard Library — Python 3.14.3 documentation
2 days ago · In addition to the standard library, there is an active collection of hundreds of thousands of components (from individual programs and modules to packages and entire application development …
gc — Garbage Collector interface — Python 3.14.3 documentation
3 days ago · This module provides an interface to the optional garbage collector. It provides the ability to disable the collector, tune the collection frequency, and set debugging options.
Python Module Index — Python 3.14.3 documentation
2 days ago · Python Module Index _ | a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | q | r | s | t | u | v | w | x | z
heapq — Heap queue algorithm — Python 3.14.3 documentation
3 days ago · This module provides an implementation of the heap queue algorithm, also known as the priority queue algorithm. Min-heaps are binary trees for which every parent node has a value less …
typing — Support for type hints — Python 3.14.3 documentation
3 days ago · If X is a typing-module alias for a builtin or collections class, it will be normalized to the original class. If X is an instance of ParamSpecArgs or ParamSpecKwargs, return the underlying …
Installing Python Modules — Python 3.14.3 documentation
2 days ago · Python has typically relied heavily on source based distribution, with end users being expected to compile extension modules from source as part of the installation process.
5. Data Structures — Python 3.14.3 documentation
2 days ago · Another useful data type built into Python is the dictionary (see Mapping Types — dict). Dictionaries are sometimes found in other languages as “associative memories” or “associative arrays”.