Reading python documentation in the terminal?

后端 未结 6 775
谎友^
谎友^ 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:46

    I don't if this is what you wanted but you everything you can do in IDLE you can do on the command line. Example:

    C:>python
    >>help(print())
    >>help(plt.plot())
    

    This way you can access documentation

提交回复
热议问题