欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-06-26 11:53:33
...

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

{
    "code-runner.runInTerminal": true
}

或者

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