I was reading Hidden features of Python and I came across this answer.
Right from the post:
When using the interactive shell, "_" contains the value of the last printed item:
>>> range(10)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> _
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>>
What is the name of this operator ? I cannot find it on the document and I've never heard of it (as well as in other languages). Is it worth using it?
PS. I want to know its name because I want to see how the function is implemented and to search if other languages have this awesome function.