3.3.8.2. Python ドキュメント
Python に関する詳細情報は、
man python
を参照してください。また、python-docs
をインストールすることもできます。これは、以下の場所で HTML マニュアルとリファレンスを提供します。
file:///usr/share/doc/python-docs-version/html/index.html
ライブラリーおよび言語コンポーネントについては、
pydoc component_name
を使用してください。たとえば、pydoc math
は math
Python モジュールについて以下の情報を表示します。
Help on module math: NAME math FILE /usr/lib64/python2.6/lib-dynload/mathmodule.so DESCRIPTION This module is always available. It provides access to the mathematical functions defined by the C standard. FUNCTIONS acos[...] acos(x) Return the arc cosine (measured in radians) of x. acosh[...] acosh(x) Return the hyperbolic arc cosine (measured in radians) of x. asin(...) asin(x) Return the arc sine (measured in radians) of x. asinh[...] asinh(x) Return the hyperbolic arc sine (measured in radians) of x.
Help on module math:
NAME
math
FILE
/usr/lib64/python2.6/lib-dynload/mathmodule.so
DESCRIPTION
This module is always available. It provides access to the
mathematical functions defined by the C standard.
FUNCTIONS
acos[...]
acos(x)
Return the arc cosine (measured in radians) of x.
acosh[...]
acosh(x)
Return the hyperbolic arc cosine (measured in radians) of x.
asin(...)
asin(x)
Return the arc sine (measured in radians) of x.
asinh[...]
asinh(x)
Return the hyperbolic arc sine (measured in radians) of x.
Python 開発プロジェクトのメインサイトは、python.org になります。