python 调试

python -m pdb test.py

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

在程序中添加断点:
import pdb

执行的程序中 使用
pdb.set_trace()

import pdb
def test():

    pdb.set_trace()

    for i in range(1, 5):

        print (i)
        print(1)
        print(2)
        print(x)

test()


posted on 2019-03-21 19:07  游荡的鱼  阅读(96)  评论(0编辑  收藏  举报

导航