#10299: Add a table that lists all the built-in functions in functions.rst

This commit is contained in:
Ezio Melotti 2010-11-24 20:18:02 +00:00
parent 14d98ac31b
commit f21c7ed39d
1 changed files with 18 additions and 0 deletions

View File

@ -7,6 +7,24 @@ 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 .. ..
=================== ================= ================== ================ ====================
:func:`abs` :func:`dir` :func:`hex` :func:`next` :func:`slice`
:func:`all` :func:`divmod` :func:`id` :func:`object` :func:`sorted`
:func:`any` :func:`enumerate` :func:`input` :func:`oct` :func:`staticmethod`
:func:`ascii` :func:`eval` :func:`int` :func:`open` :func:`str`
:func:`bin` :func:`exec` :func:`isinstance` :func:`ord` :func:`sum`
:func:`bool` :func:`filter` :func:`issubclass` :func:`pow` :func:`super`
:func:`bytearray` :func:`float` :func:`iter` :func:`print` :func:`tuple`
:func:`bytes` :func:`format` :func:`len` :func:`property` :func:`type`
:func:`chr` :func:`frozenset` :func:`list` :func:`range` :func:`type`
:func:`classmethod` :func:`getattr` :func:`locals` :func:`repr` :func:`vars`
:func:`compile` :func:`globals` :func:`map` :func:`reversed` :func:`zip`
:func:`complex` :func:`hasattr` :func:`max` :func:`round` :func:`__import__`
:func:`delattr` :func:`hash` :func:`memoryview` :func:`set`
:func:`dict` :func:`help` :func:`min` :func:`setattr`
=================== ================= ================== ================ ====================
.. function:: abs(x)