查看某个方法的doc

python -m pydoc 方法名

python -m pydoc raw_input

查询结果如下,按ctrl+z退出

raw_input(...)
    raw_input([prompt]) -> string

    Read a string from standard input.  The trailing newline is stripped.
    If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise EOFError.
    On Unix, GNU readline is used if enabled.  The prompt string, if given,
    is printed without a trailing newline before reading.
(END)
上一篇:#3 Linux常用的命令的使用方法


下一篇:AngularJS-directive自定义指令与link绑定事件