你如何从Python源代码中闯入调试器?

时间:2008-09-29 19:55:13

标签: python debugging breakpoints pdb

你将什么插入到Python源代码中以使其进入pdb(当执行到达那个位置时)?

2 个答案:

答案 0 :(得分:34)

import pdb; pdb.set_trace()

请参阅Python: Coding in the Debugger for Beginners了解更多有用的提示。

答案 1 :(得分:1)

从Python 3.7开始,您可以使用breakpoint()-https://docs.python.org/3/library/functions.html#breakpoint