help(object)

今更ながらPythonにhelpという関数があるのを知る.
引数にオブジェクトを与えると,解説を表示してくれるという便利もの.

次はintオブジェクトの解説:

>>>a = 1
>>> help(a)
Help on int object:

class int(object)
 |  int(x[, base]) -> integer
 |
 |  Convert a string or number to an integer, if possible.  A floating point
 |  argument will be truncated towards zero (this does not include a string
 |  representation of a floating point number!)  When converting a string, use
 |  the optional base.  It is an error to supply a base when converting a
 |  non-string. If the argument is outside the integer range a long object
 |  will be returned instead.
 |
 |  Methods defined here:
 |
 |  __abs__(...)
 |      x.__abs__() <==> abs(x)
 |
(後略)