我有一个脚本,我想在某些情况下提前退出:
if not "id" in dir():
print "id not set, cannot continue"
# exit here!
# otherwise continue with the rest of the script...
print "alright..."
[ more code ]
我使用 Python 交互式提示符运行此脚本execfile("foo.py")
,我希望脚本退出并返回到交互式解释器。我该怎么做呢?如果我使用sys.exit()
,Python 解释器将完全退出。