Reputation: 3053
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
Reputation: 11
You should open Pycharm settings -> Keymap -> and use keyboard shortcuts for "Execute selection in Python console"
Upvotes: 1