标签: python
如果我有这样的代码:
a=input('#something') while True: if a == 0: #Stop the program here
我将如何结束该计划?
由于
答案 0 :(得分:1)
是的,你通常这样做:
import sys sys.exit()
如果出现错误,您可以通过传递sys.exit("oops!")中的字符串来指示。
sys.exit("oops!")