Pycharm: run only part of my Python file

2019-01-16 10:37发布

问题:

Is it possible to run only a part of a program in PyCharm?

In other editors there is something like a cell which I can run, but I can't find such an option in PyCharm?

If this function doesn't exist it would be a huge drawback for me... Because for my data analysis I very often only need to run the last few lines of my code.

回答1:

I found out an easier way. Enter the Settings and go to Keymap. Search for Execute Selection in Console and reassign it to a new shortcut, like Crl+Enter. This is the same shortcut to the same action in Spyder and R-Studio.



回答2:

Pycharm shortcut for running "Selection" in the console is ALT + SHIFT + e

For this to work properly, you'll have to run everything this way.



回答3:

You can select a code snippet and use right click menu to choose the action "Execute Selection in console".



回答4:

You can set a breakpoint, and then just open the debug console. So, the first thing you need to turn on your debug console:

After you've enabled, set a break-point to where you want it to:

After you're done setting the break-point:

Once that has been completed: