Pycharm debugging techniques and shortcuts

Find a keyword:

  1. Find in Path function provides a global search function, shortcut key is Ctrl + the Shift + F , or Edit- "Find-" Find in Path into the Global Search from the menu interface
  2. Find the current file, shortcut keys Ctrl + F .

Change font:

In the  Editor  →  the Font  can modify the font Under Options, adjust the font size and other functions.

 

 

 

In the windows of some of the most commonly used default shortcuts:

 

 

 

Breakpoint debugging:

 

 

    Program Resume : After breakpoint debugging, click the button, the program is continued;

   Over the STEP   : When single-stepping, will not enter the subroutine encountered in the single step function in the sub-function, but will then stop executing the entire sub-function, that is, the entire sub-functions as a step. One thing, through our simple debugging, in the absence of sub-functions are and Step Into effect the same (in short, over the subroutine, but sub-function performs);

   Into the STEP : single stepping, and continues to encounter Functions entered single-step (in short, to enter the sub-function);

 

   Out STEP  : when stepping into the subroutine, step out can be completed by performing the remainder of the subroutine, and returns to the function level.

 

 

 Found a very good use of the tool, called Understand: This software has powerful static code analysis capabilities, and a variety of flow chart can be drawn.

Download and cracked software installation package for this article: https://my.oschina.net/krysl/blog/2070243

I direct the use of English.

Use a reference of this article: http://codemx.cn/2016/04/30/Understand01/#

The most important thing is to rely on themselves to explore spicy :)

 

Guess you like

Origin www.cnblogs.com/Bella2017/p/11622121.html