vscode编写Python怎么隐藏终端路径

用vscode编写Python时,看到每次运行终端显示路径好难受,大佬们能不能给个解决方法

img

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "run-my-script",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/path/to/your_script.py",
            "console": "internalConsole"
        },
        ...
    ]
}


在你的编译器中添加如上配置