【Python】【一句话】debug时的选项:Step Over、Step Into、Step Into My Code、Step Out 等的官方说明,最简单最易懂!Show Execution PointStep OverStep IntoStep Into My codeStep OutRun to Curser
文章目录
Show Execution Point
Step Over
Step Into
Step Into My code
Step Out
Run to Curser
本文介绍 Pycharm 中对 .py 文件进行debug时的各种选项的功能。
网上各种文章琳琅满目,但是也让人眼花缭乱。然而,最简单最直白的其实还是官方说明!
Show Execution Point
【Python】【一句话】debug时的选项:Step Over、Step Into、Step Into My Code、Step Out 等的官方说明,最简单最易懂!Show Execution PointStep OverStep IntoStep Into My codeStep OutRun to Curser
Show the current program execution point
显示当前程序执行点
点击后显示代码当前执行的位置。
Step Over
【Python】【一句话】debug时的选项:Step Over、Step Into、Step Into My Code、Step Out 等的官方说明,最简单最易懂!Show Execution PointStep OverStep IntoStep Into My codeStep OutRun to Curser
【Python】【一句话】debug时的选项:Step Over、Step Into、Step Into My Code、Step Out 等的官方说明,最简单最易懂!Show Execution PointStep OverStep IntoStep Into My codeStep OutRun to Curser
Step to the next line executed
转到执行的下一行
顾名思义,执行到哪,停到哪!一行都不跳地走。
Step Into My code
【Python】【一句话】debug时的选项:Step Over、Step Into、Step Into My Code、Step Out 等的官方说明,最简单最易懂!Show Execution PointStep OverStep IntoStep Into My codeStep OutRun to Curser
【Python】【一句话】debug时的选项:Step Over、Step Into、Step Into My Code、Step Out 等的官方说明,最简单最易懂!Show Execution PointStep OverStep IntoStep Into My codeStep OutRun to Curser
Step to the first line executed after returning from this method
从此方法返回后执行第一行
执行到当前方法结束后的第一行。
Run to Curser
【Python】【一句话】debug时的选项:Step Over、Step Into、Step Into My Code、Step Out 等的官方说明,最简单最易懂!Show Execution PointStep OverStep IntoStep Into My codeStep OutRun to Curser