pdb — The Python Debugger

调试脚本文件test.py

python -m pdb test.py

常用命令:

l   #查看运行到哪行代码 
n   #单步运行,跳过函数 
s   #单步运行,可进入函数 
p 变量     #查看变量值 
b 行号    #断点设置到第几行 
b   #显示所有断点列表 
cl 断点号  #删除某个断点 
cl  #删除所有断点 
c   #跳到下一个断点 
r   #return当前函数 
exit    #退出

参考链接:

https://docs.python.org/2.7/library/pdb.html
http://python.usyiyi.cn/python_278/library/pdb.html

你可能感兴趣的:(debug,python,pdb,调试)