SomoKRoceS
SomoKRoceS

Reputation: 3053

Is there a feature in PyCharm similar to RStudio's Global Environment and partial code execution?

In RStudio there's the ability to execute specific lines of code from the script, while IDE holds the variables and their values at the Global Environment.

I am looking for similar feature/s in PyCharm. I am not sure how can i execute specific lines of code from my script, While the variables that already created or altered in the previous executes and their values still exists.

Is it even possible? How?

Thanks.

Upvotes: 0

Views: 147

Answers (1)

Vlad Panteleev
Vlad Panteleev

Reputation: 11

You should open Pycharm settings -> Keymap -> and use keyboard shortcuts for "Execute selection in Python console"

highlighted in red

Upvotes: 1

Related Questions