我正在尝试退出 python 脚本而不会出现烦人的错误消息:
Traceback (most recent call last):
File "<pyshell#27>", line 3, in <module>
sys.exit()
SystemExit
我已经尝试了很多东西,但没有一个奏效。这是一个例子:
while True:
print "hi", #this just tests to see if I have exited.
try:
sys.exit()
except SystemExit:
print "Exited"
注意:解决方案不必接近此代码,这只是我尝试过的一个例子