Reading input during debugging in Python with VSCode

后端 未结 7 2099
执笔经年
执笔经年 2020-12-05 07:53

Here is the extension for python I used in the vs code: python extension.

When I use the debugging feature provided by the extension, it will hang in there and do no

7条回答
  •  孤城傲影
    2020-12-05 08:15

    Change the launch.json and put this into your java code

    {
        "type": "java",
        "name": "Debug (Launch)",
        "request": "launch",
        "cwd": "${workspaceFolder}",
        "console": "externalTerminal",
        "stopOnEntry": false,
        "mainClass": "",
        "args": ""
    }
    

提交回复
热议问题