enter image description herehow to remove this yelow and blue text ?
i didn't try anything, cause i don't know what to do
enter image description herehow to remove this yelow and blue text ?
i didn't try anything, cause i don't know what to do
I've seen this question countless times. I want to tell you that this is how vscode works, why not get used to it. Vscode uses the system terminal as an integrated terminal, uses the terminal and displays shell commands when executing scripts, there is no problem.
If your goal is to get output without displaying shell commands, an alternative is Code Runner. Install the extension and add the following in settings.json. You will see the result in the OUTPUT panel.
"code-runner.runInTerminal": false,
"code-runner.clearPreviousOutput": true,
"code-runner.showExecutionMessage": false,
But please note that if there is no special requirement, it is recommended that you use the official Python extension to execute the script. Because Code Runner is not an extension specially developed for a certain language, it is applicable to multiple languages, but it is limited to executing code. In addition, in the OUTPUT panel above, the code cannot receive user input.
Therefore, please accept the shell command of the terminal, which has no bad effect, but clearly shows the running path of the code, etc.