About 50 results
Open links in new tab
  1. Built-in Functions — Python 3.14.3 documentation

    3 days ago · The built-in sorted() function is guaranteed to be stable. A sort is stable if it guarantees not to change the relative order of elements that compare equal — this is helpful for sorting in multiple …

  2. builtins — Built-in objects — Python 3.14.3 documentation

    3 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().

  3. The Python Standard Library — Python 3.14.3 documentation

    3 days 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 well as …

  4. Built-in Types — Python 3.14.3 documentation

    4 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 …

  5. Functional Programming HOWTO — Python 3.14.3 documentation

    Built-in functions such as max() and min() can take a single iterator argument and will return the largest or smallest element. The "in" and "not in" operators also support iterators: X in iterator is true if X is …

  6. Sorting Techniques — Python 3.14.3 documentation

    2 days ago · There is also a sorted() built-in function that builds a new sorted list from an iterable. In this document, we explore the various techniques for sorting data using Python.

  7. inspect — Inspect live objects — Python 3.14.3 documentation

    2 days ago · The inspect module provides several useful functions to help get information about live objects such as modules, classes, methods, functions, tracebacks, frame objects, and code objects.

  8. 9. Classes — Python 3.14.3 documentation

    Feb 4, 2026 · Examples of namespaces are: the set of built-in names (containing functions such as abs(), and built-in exception names); the global names in a module; and the local names in a function …

  9. string — Common string operations — Python 3.14.3 documentation

    3 days ago · So for example, the field expression ‘0.name’ would cause get_value() to be called with a key argument of 0. The name attribute will be looked up after get_value() returns by calling the built …

  10. math — Mathematical functions — Python 3.14.3 documentation

    3 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 numbers; use the …