
5. Data Structures — Python 3.13.3 documentation
1 day ago · Data Structures¶ This chapter describes some things you’ve learned about already in more detail, and adds some new things as well. 5.1. More on Lists¶ The list data type has …
Built-in Types — Python 3.13.3 documentation
1 day ago · The following sections describe the standard types that are built into the interpreter. The principal built-in types are numerics, sequences, mappings, classes, instances and …
Built-in Functions — Python 3.13.3 documentation
1 day ago · Built-in Functions¶ The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.
Data Types — Python 3.13.3 documentation
1 day ago · Data Types¶ The modules described in this chapter provide a variety of specialized data types such as dates and times, fixed-type arrays, heap queues, double-ended queues, …
Functionality to operate with graph-like structures - Python
2 days ago · This page is licensed under the Python Software Foundation License Version 2. Examples, recipes, and other code in the documentation are additionally licensed under the …
builtins — Built-in objects — Python 3.9.21 documentation
builtins — Built-in objects¶ This module provides direct access to all ‘built-in’ identifiers of Python; for example, builtins.open is the full name for the built-in function open() . See Built-in …
collections — Container datatypes — Python 3.13.3 documentation
1 day ago · This module implements specialized container datatypes providing alternatives to Python’s general purpose built-in containers, dict, list, set, and tuple. namedtuple() factory …
The Python Standard Library — Python 3.13.3 documentation
1 day ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as …
Glossary — Python 3.13.3 documentation
2 days ago · Python comes with many built-in ABCs for data structures (in the collections.abc module), numbers (in the numbers module), streams (in the io module), import finders and …
3. Data model — Python 3.13.3 documentation
1 day ago · Below is a list of the types that are built into Python. Extension modules (written in C, Java, or other languages, depending on the implementation) can define additional types. …