Merged revisions 86732 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86732 | ezio.melotti | 2010-11-24 22:18:02 +0200 (Wed, 24 Nov 2010) | 1 line #10299: Add a table that lists all the built-in functions in functions.rst ........
This commit is contained in:
parent
8b7eef3413
commit
42cc06ebf4
|
@ -7,6 +7,24 @@ Built-in Functions
|
||||||
The Python interpreter has a number of functions and types built into it that
|
The Python interpreter has a number of functions and types built into it that
|
||||||
are always available. They are listed here in alphabetical order.
|
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)
|
.. function:: abs(x)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue