28

你在 Python 源代码中插入了什么来让它进入 pdb(当执行到达那个位置时)?

4

2 回答 2

40
import pdb; pdb.set_trace()

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

于 2008-09-29T19:55:20.143 回答
10

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

于 2019-12-16T23:51:27.433 回答