Built-in Functions — Python 3.12.1 documentation
The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order. Built-in Functions Return the absolute value of a number. The argument may be an integer, a floating point number, or an object implementing __abs__(). If the argument is a complex number, its magnitude is returned. Return an asynchronous iterator for an asynchronous iterable. Equivalent to calling x.__aiter__(). Note: Unlike iter(), aiter() has no 2-argument variant. New in version 3.10. Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent to: When awaited, return the next item from the given asynchronous iterator, or default if given and the iterator is exhausted. This is the async variant of the next() builtin, and behaves similarly. This calls the __anext__() method of async_iterator, returning an awaitable. Awaiting this returns the next value of the iterator. If default is given, it is returned if
Built-in Functions — Python 3.14.6 documentation Navigation index modules | next | previous | Python » 3.14.6 Documentation » The Python Standard Library » Built-in Functions | Theme Auto Light Dark | 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. Built-in Functions A abs() aiter() all() anext() any() ascii() B bin() bool() breakpoint() bytearray() bytes() C callable() chr() classmethod() compile() complex() D delattr() dict() dir() divmod() E enumerate() e
Explore this link on the map →related reading
- cpython/Objects/abstract.c at 3.10 · python/cpython · GitHubgithub.com
- Programming FAQ — Python 3.14.6 documentationdocs.python.org
- 9. Classes — Python 3.14.6 documentationdocs.python.org
- Built-in Functions and Help: OxRSE Trainingtrain.oxrse.uk
- 3. Data model — Python 3.14.6 documentationdocs.python.org
- Glossary — Python 3.14.6 documentationdocs.python.org
- styleguide | Style guides for Google-originated open-source projectsgoogle.github.io
- Plus 2: Luyện đọc điền và đọc hiểu chuyên sâu (2024)ngoaingu24h.vn
- How to Stand Out in a Python Coding Interview – Real Pythonrealpython.com
- 3. An Informal Introduction to Python — Python 3.14.6 documentationdocs.python.org
- Functional Programming HOWTO — Python 3.14.6 documentationdocs.python.org
- GitHub - shroominic/codeinterpreter-api: 👾 Open source implementation of the ChatGPT Code Interpreter · GitHubgithub.com