gpt4 book ai didi

python - 如何在运行时结束python程序?

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:41 25 4
gpt4 key购买 nike

我自学python。我在这里遇到了一个问题......“人类玩家也可以随时通过按下 Control-D 序列来结束游戏。”我该怎么做。我应该使用什么样的功能?谢谢。

最佳答案

你可以试试 sys.exit() :

import sys
...
sys.exit()

还有一个更标准的 exit() 函数(您不需要为此导入任何东西)。但是,如文档中所述,这与 sys.exit() 之间存在一个显着差异:

Since exit() ultimately "only" raises an exception, it will only exit the process when called from the main thread, and the exception is not intercepted.

关于python - 如何在运行时结束python程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14107436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com