Reputation: 5291
In the bottom window of vs code there is a debug console problmes output terminal:
I want to have one for my python intepreter. Is that possible?
I know I can open another terminal option but that is not what I am looking for but its what I am doing for now.
Upvotes: 0
Views: 59
Reputation: 5291
I am not super happy with my current hacky solution but for now this is what I am doing:
shift + enter
on any line. That runs the command in the python shell.I really wanted just a tab of its own like debug consule that had python working all the time and I could go to it with a keyboard short cut but I guess this work for now...
Upvotes: 1
Reputation: 317
You can use the run option from right top. check this image to execute.
or simply click on terminal and enter python or python3 (depends on version installed on your machine)
Upvotes: 0