是否可以在Python中停止程序?

Is it possible to stop a program in Python?

本问题已经有最佳答案,请猛点这里访问。

如果我有这样的代码:

1
2
3
4
a=input('#something')
while True:
    if a == 0:
        #Stop the program here

我该如何结束这个计划?

谢谢


是的,你通常是这样做的:

1
2
import sys
sys.exit()

如果有错误,您可以通过像sys.exit("oops!")中那样传递一个字符串来指示这一点。