问题:Python中exit()和sys.exit()之间的区别
在Python中,有两个类似的函数,exit()
和sys.exit()
。有什么区别,何时应在另一个上使用?
回答 0
exit
是交互式外壳的帮助sys.exit
程序- 旨在在程序中使用。
该
site
模块(启动时会自动导入,除非指定了-S
命令行选项)会向内置命名空间(例如exit
)添加多个常量。它们对于交互式解释程序外壳很有用,不应在程序中使用。
从技术上讲,它们的作用大致相同:提高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()
)。
回答 1
如果我exit()
在代码中使用并在外壳中运行它,则会显示一条消息,询问我是否要终止该程序。真是令人不安。
看这里
但是sys.exit()
在这种情况下更好。它关闭程序,并且不创建任何对话框。
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。