Answers:
exit
是交互式外壳的帮助sys.exit
程序- 旨在在程序中使用。
该
site
模块(启动时会自动导入,除非指定了-S
命令行选项)会向内置名称空间(例如exit
)添加多个常量。它们对于交互式解释程序外壳很有用,不应在程序中使用。
从技术上讲,它们的作用大致相同:提高SystemExit
。sys.exit
在sysmodule.c中这样做:
static PyObject *
sys_exit(PyObject *self, PyObject *args)
{
PyObject *exit_code = 0;
if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
return NULL;
/* Raise SystemExit so callers may catch it or clean up. */
PyErr_SetObject(PyExc_SystemExit, exit_code);
return NULL;
}
虽然分别exit
在site.py和_sitebuiltins.py中定义。
class Quitter(object):
def __init__(self, name):
self.name = name
def __repr__(self):
return 'Use %s() or %s to exit' % (self.name, eof)
def __call__(self, code=None):
# Shells like IDLE catch the SystemExit, but listen when their
# stdin wrapper is closed.
try:
sys.stdin.close()
except:
pass
raise SystemExit(code)
__builtin__.quit = Quitter('quit')
__builtin__.exit = Quitter('exit')
请注意,还有第三个退出选项os._exit,它退出时不调用清除处理程序,刷新stdio缓冲区等(并且通常仅应在之后的子进程中使用fork()
)。
from module import *
。
如果我exit()
在代码中使用并在外壳中运行它,则会显示一条消息,询问我是否要终止该程序。真是令人不安。
看这里
但是sys.exit()
在这种情况下更好。它关闭程序,并且不创建任何对话框。
sys.exit()
应在程序内部使用。
-S
使用,否则它工作正常。使它甚至可以使用的一种方法-S
是指定from sys import *
。