Reputation: 43
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?
Upvotes: 4
Views: 2052
Reputation: 10374
Since you use the "Code Runner" extension, we can set it:
settings.json
":
"code-runner.showExecutionMessage": false,
Run:
Upvotes: 3