调试控制台不显示任何输出

Debug console doesnt show any output

我开始 python 基础课程,并尝试 运行 使用 Vscode 编写一些初始代码。观看课程视频后,我注意到我在 DEBUG CONSOLE 下看不到任何输出。我确实在 TERMINAL 部分下得到了输出。 另外,我注意到调试图标与视频中的不同(我的有一个播放箭头)。

我是不是漏掉了什么?

我的python

C:\Users\andres>py --version
Python 3.8.3

我现在的launch.json是

{
// 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": "Python: Current File",
        "type": "python",
        "request": "launch",
        "program": "${file}",
        "cwd": "",
        "console": "integratedTerminal"
         
    }
]

}

谢谢

感谢@tHeSiD 的初步建议。对于 winerror 123,我删除并重新创建了 json 文件