
Built-in Types — Python 3.14.3 documentation
2 days ago · Built-in Types ¶ 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 …
Data Types — Python 3.14.3 documentation
3 days ago · 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, and enumerations.
Dynamic type creation and names for built-in types - Python
3 days ago · This module provides names for many of the types that are required to implement a Python interpreter. It deliberately avoids including some of the types that arise only incidentally during …
The Python Tutorial — Python 3.14.3 documentation
2 days ago · After reading it, you will be able to read and write Python modules and programs, and you will be ready to learn more about the various Python library modules described in The Python …
5. Data Structures — Python 3.14.3 documentation
2 days ago · They are two examples of sequence data types (see Sequence Types — list, tuple, range). Since Python is an evolving language, other sequence data types may be added.
3. Modèle de données — Documentation Python 3.14.3
Les futures versions de Python pourront ajouter des types à cette hiérarchie (par exemple les nombres rationnels, des tableaux d'entiers stockés efficacement, etc.), bien que de tels ajouts se trouvent …
operator — Standard operators as functions — Python 3.14.3 …
2 days ago · Listed below are functions providing a more primitive access to in-place operators than the usual syntax does; for example, the statement x += y is equivalent to x = operator.iadd(x, y).
typing — Support for type hints — Python 3.14.2 documentation
Jan 18, 2026 · While type hints can be simple classes like float or str, they can also be more complex. The typing module provides a vocabulary of more advanced type hints. New features are frequently …
ctypes — A foreign function library for Python — Python 3.14.3 ...
2 days ago · Fundamental data types, when returned as foreign function call results, or, for example, by retrieving structure field members or array items, are transparently converted to native Python types.
Synchronization Primitives — Python 3.14.3 documentation
3 days ago · An asyncio condition primitive can be used by a task to wait for some event to happen and then get exclusive access to a shared resource. In essence, a Condition object combines the …