在pyscripter中调试时如何设置条件断点?
How to put a conditional break point while debugging in pyscripter?
我的问题可能看起来很奇怪。
我正在使用便携式 python、pyscripter 在 python 中调试程序。
是否可以让 pyscripter 来做这个? :
"Run the program until my_variable
's value become equal to 10, then stop at that point, and let me debug it line by line (using F7 or F8)"
我想要某种断点,它在变量获得某个特定值时激活。
是的,PyScripter 可以做到这一点。它被称为条件断点。
放置一个断点,打开 Breakpoints
选项卡,右键单击您的断点以打开上下文菜单,您可以在其中添加条件(python 表达式)
我的问题可能看起来很奇怪。
我正在使用便携式 python、pyscripter 在 python 中调试程序。
是否可以让 pyscripter 来做这个? :
"Run the program until my_variable
's value become equal to 10, then stop at that point, and let me debug it line by line (using F7 or F8)"
我想要某种断点,它在变量获得某个特定值时激活。
是的,PyScripter 可以做到这一点。它被称为条件断点。
放置一个断点,打开 Breakpoints
选项卡,右键单击您的断点以打开上下文菜单,您可以在其中添加条件(python 表达式)