python command line manual

Steven D'Aprano steve at REMOVE-THIS-cybersource.com.au
Mon May 24 20:06:17 EDT 2010


On Mon, 24 May 2010 17:52:13 -0500, Peng Yu wrote:

> I mainly check online python manual. But I feel that it would be nice if
> there is command line manual available (just like perl command line
> manual). Could you please let me know if such command line manual
> available?

>From the shell, you can call:

python --help

If you are using Linux, your distro probably has also installed the 
Python man pages, which you access with either of:

man python
info python

And from inside the Python interactive interpreter, you can call 
help(obj) to get help on any object, or just help() to enter an 
interactive help session.



-- 
Steven



More information about the Python-list mailing list