'exit' is not a keyword in Python, but no error occurs while using it

时光怂恿深爱的人放手 提交于 2019-12-05 13:58:41

Keywords are part of the python syntax. They usually have special meaning in statements (e.g. for, del, if ...). This has other consequences -- e.g. you can't make a variable with the same name as a keyword.

builtins are callable objects (e.g. functions or at least function-like) that python provides in the namespace by default. examples of builtin functions are things like sorted, id, vars, ...

It's worth noting that exit is a convenience provided when in an interactive session. It's highly encouraged to use sys.exit instead.

exit is an instance of the Quitter class. The Quitter class defines an __repr__ method that returns the string that you see when you type exit into the shell. It also defines a __call__ method. Just as __init__ is called when you use a class like a function, __call__ is called when an instance is used like a function. Therefore, exit() calls the __call__ method, which exits the program.

exit is an Built-in Constants added by the site module.

The site module (which is imported automatically during startup, except if the -S command-line option is given) adds several constants to the built-in namespace. They are useful for the interactive interpreter shell and should not be used in programs.

exit is the sys.exit function when you are using the interactive console.

Many things exist while they are not keywords (e.g. sum, int...). So you can bind to existing names, but not to keywords

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!