gpt4 book ai didi

Python:脚本运行后退出IDLE

转载 作者:太空宇宙 更新时间:2023-11-04 08:10:06 27 4
gpt4 key购买 nike

是否有可能在运行结束后从我的 python 代码/脚本中以某种方式退出 Windows 下的 Python IDLE?

我试过类似的方法:

import sys
sys.exit(0) # or exit(1)

没用。可能只退出正在运行的 python 脚本的当前“进程”。非常感谢

最佳答案

如果您可以从命令行运行 IDLE(或编辑您的快捷方式),我在 IDLE 帮助中找到了这个。

If IDLE is started with the -n command line switch it will run in a
single process and will not create the subprocess which runs the RPC
Python execution server.

这似乎暗示脚本正在内部 IDLE 运行。我做了一个快速测试脚本,调用 exit() 弹出了一个要求终止程序的框。点击yes,脚本和IDLE都退出了。希望能有所帮助。

关于Python:脚本运行后退出IDLE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24045023/

27 4 0
文章推荐: Python --command 命令行选项
文章推荐: 单行文本的 HTML 标记 vs

vs