About 397 results
Open links in new tab
  1. Built-in Functions — Python 3.14.2 documentation

    1 day ago · The isinstance() built-in function is recommended for testing the type of an object, because it takes subclasses into account. With three arguments, return a new type object.

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

  3. The Python Standard Library — Python 3.14.2 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 well as modules …

  4. functools — Higher-order functions and operations on ... - Python

    1 day ago · Source code: Lib/functools.py The functools module is for higher-order functions: functions that act on or return other functions. In general, any callable object can be treated as a function for t...

  5. Built-in Types — Python 3.14.2 documentation

    2 days ago · Numbers are created by numeric literals or as the result of built-in functions and operators. Unadorned integer literals (including hex, octal and binary numbers) yield integers. Numeric literals …

  6. Built-in Constants — Python 3.14.2 documentation

    1 day 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.

  7. Introduction — Python 3.14.2 documentation

    1 day ago · The library also contains built-in functions and exceptions — objects that can be used by all Python code without the need of an import statement. Some of these are defined by the core …

  8. math — Mathematical functions — Python 3.14.2 documentation

    1 day 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 …

  9. Sorting Techniques — Python 3.14.2 documentation

    1 day 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.

  10. inspect — Inspect live objects — Python 3.14.2 documentation

    1 day 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.