怎么设置每次代码运行完都出现Process finished with exit code 0
时间: 2023-10-29 21:57:46 浏览: 73
pytorch报错:Process finished with exit code -1073741819 (0xC0000005)
要设置每次代码运行完都出现 "Process finished with exit code 0",你可以在你的代码中添加以下语句:
```
import sys
sys.exit(0)
```
这个语句会在代码执行完毕后退出程序,并且返回退出码 0,表示程序正常结束。这样就会在代码运行完毕后显示 "Process finished with exit code 0"。
阅读全文