为什么我无法在 VS 代码中接受用户输入?



如何在VS代码中获取用户输入? 这是我的launch.json文件:

{
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"program": "${file}",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
],
"console": "integratedTerminal"
}
]}

我还需要做什么?

设置这个。

{
"code-runner.runInTerminal": true
}

这个问题几乎可以肯定是这个的骗局

相关内容

  • 没有找到相关文章

最新更新