Reading python documentation in the terminal?

后端 未结 6 750
谎友^
谎友^ 2020-12-30 12:14

Is there a way to install the python documentation that would make it available as if it was a manpage? (I know you can download the sourcefiles for the documentation and re

6条回答
  •  生来不讨喜
    2020-12-30 12:55

    I don't know if that's exactly what you are looking for, but the python interactive console offers a help command. You can use it in the following manner.

    >>> help()
    
    Welcome to Python 3.6's help utility!
    
    If this is your first time using Python, you should definitely check out
    the tutorial on the Internet at http://docs.python.org/3.6/tutorial/.
    
    Enter the name of any module, keyword, or topic to get help on writing
    Python programs and using Python modules.  To quit this help utility and
    return to the interpreter, just type "quit".
    
    To get a list of available modules, keywords, symbols, or topics, type
    "modules", "keywords", "symbols", or "topics".  Each module also comes
    with a one-line summary of what it does; to list the modules whose name
    or summary contain a given string such as "spam", type "modules spam".
    
    help> list
    

    This will output the whole documentation for all of the list methods.

提交回复
热议问题