NotePublic/Software/Program/Language/Python/Python_使用帮助.md

263 B

Python 使用帮助

首先通过 pip 或 apt-get 等方式安装 ipython。

输入 python 命令进入交互模式:

$ python
>>> import os
>>> import time
>>> help(os)
>>> help(time.localtime())
>>> help(range)

按 q 键退出。