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

时间:2016-11-29 13:16:00

标签: python

如果我有这样的代码:

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

我将如何结束该计划?

由于

1 个答案:

答案 0 :(得分:1)

是的,你通常这样做:

import sys
sys.exit()

如果出现错误,您可以通过传递sys.exit("oops!")中的字符串来指示。