flâneur — a map of the web's best reading

Built-in Functions — Python 3.12.1 documentation

docs.python.org · 13,928 words · saved by 1 readers

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