我想将pdb( Python调试器)添加到我的工具箱中。最好的入门方法是什么?
Answers:
以下是开始使用Python调试器的资源列表:
概要:
# epdb1.py -- experiment with the Python debugger, pdb
import pdb
a = "aaa"
pdb.set_trace()
b = "bbb"
c = "ccc"
final = a + b + c
print final
现在运行您的脚本:
$ python epdb1.py
(Pdb) p a
'aaa'
(Pdb)
ipython
将其包装在函数中。