简介
本文主要介绍通过pdb lib 实现在python中debug代码示例
import pdb
pdb.set_trace()
for i in range(10):
print(i)
运行中
> /home/mingfeng/python_debug.py(6)<module>()
-> print(i)
(Pdb) n //n为可用命令
0
debug时可用命令
- s => 进入下一个可执行函数后停止
- n => 进行到下一行停止
- c => 执行到最后停止
- l => 当前行上下文代码展示
查看原文:https://www.huuinn.com/archives/505
更多技术干货:风匀坊
关注公众号:风匀坊