python -m pdb my_script.py
<!--more-->
import pdb pdb.set_trace()
c :继续执行; w:显示上下文; a:打印当前函数参数列表; s:单步进入,进入函数内部(step); n:单步跳过,不进入函数(next); q:退出Pdb