你将什么插入到Python源代码中以使其进入pdb(当执行到达那个位置时)?
答案 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