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

15 lines
258 B
Markdown

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