Python Interpreter

Python Interpreter,或者称为 Python shell。

python --help

启动简易服务器

交互模式

进入交互模式

Unix:

python
python3

Windows:

# Python Launcher for Windows
py
py -2
py -3

# PATH 中的 python.exe
python

退出交互模式:

可以尝试 IPython, 它是增强型 Python shell,提供高亮等功能。