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

15 lines
258 B
Markdown
Raw Normal View History

2018-11-27 21:54:34 +08:00
# Python 使用帮助
首先通过 pip 或 apt 等方式安装 ipython。
2018-11-27 21:54:34 +08:00
输入 python 命令进入交互模式:
$ python
>>> import os
>>> import time
>>> help(os)
>>> help(time.localtime())
>>> help(range)
按 q 键退出。