Python中的exit()和sys.exit()之间的区别

在Python中,有两个类似命名的函数, exit()sys.exit() 。 有什么区别,我应该什么时候使用一个呢?

exit是交互式shell的助手 – sys.exit用于程序中。

站点模块(在启动过程中自动导入,除非给出-S命令行选项)将几个常量添加到内置名称空间(例如exit它们对于交互式解释器shell非常有用,不应该在程序中使用


从技术上讲,他们大都是一样的:提高SystemExitsys.exitsysmodule.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; } 

exitsite.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()之后的subprocess中使用)。

如果我在代码中使用exit()并在shell中运行它,它会显示一条消息,询问我是否要杀死程序。 这真是令人不安。 看这里

但在这种情况下sys.exit()更好。 它closures程序,不会创build任何对话框。