how to jump between BreakPoint in JetBrains PyCharm IDE

你离开我真会死。 提交于 2019-12-04 20:35:40

问题


I am trying to write a project in PyCharm after a friend recomended me to try it instead of Eclipse. take this code as example:

for x in xrange(1000)
    #do things

#want to get here fast in debug with out iterating the loop step by step

I want to put BP in the loop and after it, and by pressing a button to jump to the second one

well, I know it's a stupid question but I honestly searched for an answer and could not find it..

thanks,


回答1:


When you run in "debug" mode and stop on a breakpoint, simply click the "play" button (marked in the picture below) and it'll continue running until the next breakpoint.




回答2:


For Pycharm 5.0, it's on the left, as marked in the picture below.



来源:https://stackoverflow.com/questions/24879609/how-to-jump-between-breakpoint-in-jetbrains-pycharm-ide

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!