In PyCharm, there's a handy button next to if __name__... statements that runs a script,
with configurations for the run in a run configurations menu.
One of the options is to "Run with Python Console":
This is really handy, because I can run my in-progress script in the console without ponderously highlighting and ctrl-entering. I'm then in the console, with everything I just did in memory, and I can go and continue writing my code using the REPL to check how things are working along the way.
In VScode, when I hit the run button
It just runs the script from the terminal. I can see any output that it prints, but it doesn't drop me into a REPL interface like I'm accustomed with PyCharm.
Is this sort of functionality attainable with VSCode?


