yes
yes

Reputation: 43

Simplify Python Output in Visual Studio Code

In visual studio code I want run simple python code (using the code runner extension) and it gives me info about runtime and where the file is. I don't want that, can I cut it out and only have the output?

Image

Upvotes: 4

Views: 2052

Answers (1)

Jill Cheng
Jill Cheng

Reputation: 10374

Since you use the "Code Runner" extension, we can set it:

  1. We can add the following settings in "settings.json":

"code-runner.showExecutionMessage": false,

  1. or find the "showExecutionMessage" option in "settings", uncheck it:

    enter image description here

Run:

enter image description here

Upvotes: 3

Related Questions