
Built-in Functions — Python 3.14.2 documentation
3 days ago · The built-in functions globals() and locals() return the current global and local namespace, respectively, which may be useful to pass around for use as the second and third …
builtins — Built-in objects — Python 3.14.2 documentation
2 days ago · 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().
Introduction — Python 3.14.2 documentation
2 days ago · This manual is organized “from the inside out:” it first describes the built-in functions, data types and exceptions, and finally the modules, grouped in chapters of related modules.
Sorting Techniques — Python 3.14.2 documentation
2 days ago · Python lists have a built-in list.sort() method that modifies the list in-place. There is also a sorted() built-in function that builds a new sorted list from an iterable.
Built-in Constants — Python 3.14.2 documentation
3 days ago · The site module (which is imported automatically during startup, except if the -S command-line option is given) adds several constants to the built-in namespace.
Built-in Types — Python 3.14.2 documentation
3 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, …
math — Mathematical functions — Python 3.14.2 documentation
4 days ago · This module provides access to common mathematical functions and constants, including those defined by the C standard. These functions cannot be used with complex …