Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #31720 > unrolled thread
| Started by | Peter Otten <__peter__@web.de> |
|---|---|
| First post | 2012-10-19 10:59 +0200 |
| Last post | 2012-10-19 10:59 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Python interactive help() Peter Otten <__peter__@web.de> - 2012-10-19 10:59 +0200
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Date | 2012-10-19 10:59 +0200 |
| Subject | Re: Python interactive help() |
| Message-ID | <mailman.2498.1350637217.27098.python-list@python.org> |
Mark Lawrence wrote: > Where is this specific usage documented as my search engine skills have > let me down? find and grep ftw. > By this I mean entering help() without parameters to get > the following output and then the help> prompt. http://docs.python.org/dev/py3k/library/functions.html#help """ help([object]) Invoke the built-in help system. (This function is intended for interactive use.) If no argument is given, the interactive help system starts on the interpreter console. If the argument is a string, then the string is looked up as the name of a module, function, class, method, keyword, or documentation topic, and a help page is printed on the console. If the argument is any other kind of object, a help page on the object is generated. """
Back to top | Article view | comp.lang.python
csiph-web