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

运行的时候运行到一半就自动停止了,应该是Code Runner插件的问题。直接使用terminal运行即可避免,或者可以更改Code Runner的设置:
文件->偏好设置->设置

{
    "code-runner.runInTerminal": true
}

或者

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

你可能感兴趣的:(VS Code中code runner运行Python程序[Done] exited with code=null)