开始使用 Python 调试器 pdb

我想把 PDBーー Python 调试器ーー添加到我的工具箱中?

56324 次浏览

Here's a list of resources to get started with the Python debugger:

  1. 阅读 Steve Ferb 的文章 “ Python 调试”
  2. 观看 Eric Holscher 的电视节目 “使用 pdb,Python 调试器”
  3. Read the Python documentation for pdb — The Python Debugger
  4. 阅读 Karen Tracey 的 < em > Django 1.1测试和调试 的第九章-当你甚至不知道记录什么: 使用调试器。

Synopsis:

# 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)