NotePublic/Software/Development/Language/Python/Python_使用帮助.md
ithink.chan c0f29c0e4f 重命名 Program 为 Development.
Signed-off-by: ithink.chan <chenyang@autoai.com>
2019-10-17 11:58:12 +08:00

266 B

Python 使用帮助

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

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

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

按 q 键退出。