Variável atribuída à última linha executada? [fechadas
Acabei de encontrar algo estranho no interpretador Python. Deixe-me te mostrar
$ python
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> _
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name '_' is not defined
>>> 5 + 4
9
>>> _
9
>>> 'Hello world'
'Hello world'
>>> _
'Hello world'
>>> type(3.5)
<type 'float'>
>>> _
<type 'float'>
Você pode tentar isso no seu intérprete; aqui não há truque
O resultado da última linha executada está sendo atribuída a uma variável chamada_
?
Alguém sabe alguma coisa sobre isso? Existe alguma documentação sobre isso? Em que situação poderia ser útil?