sys.exit()将完全按照您的意愿执行.
import sys sys.exit("Error message")
joeforker.. 119
你可以raise SystemExit(0)
而不是去做所有的麻烦import sys; sys.exit(0)
.
sys.exit()将完全按照您的意愿执行.
import sys sys.exit("Error message")
你可以raise SystemExit(0)
而不是去做所有的麻烦import sys; sys.exit(0)
.
你想要的sys.exit()
.来自Python的文档:
>>> import sys >>> print sys.exit.__doc__ exit([status]) Exit the interpreter by raising SystemExit(status). If the status is omitted or None, it defaults to zero (i.e., success). If the status is numeric, it will be used as the system exit status. If it is another kind of object, it will be printed and the system exit status will be one (i.e., failure).
所以,基本上,你会做这样的事情:
from sys import exit # Code! exit(0) # Successful exit
该exit()
和quit()
你想要的东西,内置函数做.不需要导入sys.
或者,您可以提高SystemExit
,但是您需要注意不要在任何地方捕获它(只要您在所有try ..块中指定异常类型,就不会发生这种情况).