To exit from Python command line, I have to type exit(). If I type exit, it says
Use exit() or Ctrl-Z plus Return to exit
Usually when you type exit, you would want to exit the program. Why does the interpreter give me the above error when it knows I am trying to exit the command line? Why doesn’t it just exit? I know it doesn’t matter and its a silly question but I am curious.
回答 0
在我的python解释器exit中,实际上是一个字符串而不是一个函数- 'Use Ctrl-D (i.e. EOF) to exit.'。您可以输入以下内容来检查口译员type(exit)
In my python interpreter exit is actually a string and not a function — 'Use Ctrl-D (i.e. EOF) to exit.'. You can check on your interpreter by entering type(exit)
In active python what is happening is that exit is a function. If you do not call the function it will print out the string representation of the object. This is the default behaviour for any object returned. It’s just that the designers thought people might try to type exit to exit the interpreter, so they made the string representation of the exit function a helpful message. You can check this behaviour by typing str(exit) or even print exit.
When you type exit in the command line, it finds the variable with that name and calls __repr__ (or __str__) on it. Usually, you’d get a result like:
<function exit at 0x00B97FB0>
But they decided to redefine that function for the exit object to display a helpful message instead. Whether or not that’s a stupid behavior or not, is a subjective question, but one possible reason why it doesn’t “just exit” is:
Suppose you’re looking at some code in a debugger, for instance, and one of the objects references the exit function. When the debugger tries to call __repr__ on that object to display that function to you, the program suddenly stops! That would be really unexpected, and the measures to counter that might complicate things further (for instance, even if you limit that behavior to the command line, what if you try to print some object that have exit as an attribute?)
回答 3
这个消息是__str__的属性exit
看这些例子:
1个
>>>print exit
Use exit()orCtrl-D (i.e. EOF) to exit
2
>>> exit.__str__()'Use exit() or Ctrl-D (i.e. EOF) to exit'
3
>>> getattr(exit,'__str__')()'Use exit() or Ctrl-D (i.e. EOF) to exit'
Because the interpreter is not a shell where you provide commands, it’s – well – an interpreter. The things that you give to it are Python code.
The syntax of Python is such that exit, by itself, cannot possibly be anything other than a name for an object. Simply referring to an object can’t actually do anything (except what the read-eval-print loop normally does; i.e. display a string representation of the object).
回答 7
您可以解决该问题。
PYTHONSTARTUP使用以下链接到python文件
# Make exit work as expected
type(exit).__repr__ = type(exit).__call__
Link PYTHONSTARTUP to a python file with the following
# Make exit work as expected
type(exit).__repr__ = type(exit).__call__
How does this work?
The python command line is a read-evaluate-print-loop, that is when you type text it will read that text, evaluate it, and eventually print the result.
When you type exit() it evaluates to a callable object of type site.Quitter and calls its __call__ function which exits the system. When you type exit it evaluates to the same callable object, without calling it the object is printed which in turn calls __repr__ on the object.
We can take advantage of this by linking __repr__ to __call__ and thus get the expected behavior of exiting the system even when we type exit without parentheses.
“exit” is a valid variable name that can be used in your Python program. You wouldn’t want to exit the interpreter when you’re just trying to see the value of that variable.