VS-Code中code-runner运行Python程序[Done]-exited-with-code=null

如果在Visual Studio Code中运行Python程序一半就自动停止了,并弹出错误:[Done]-exited-with-code=null,这应该是Code Runner插件的问题。直接使用Terminal运行该程序即可避免,或者可以更改Code Runner的设置:

文件->偏好设置->设置

{
"code-runner.runInTerminal": true
}

或者

{
"code-runner.executorMap.python": "python -u"
}