I don't understand what this single underscore means. Is it a magic variable? I can't see it in locals() and globals().
>>> 'abc'
'abc'
>>> len(_)
3
>>>
|
|
|
|
|
|
|
In the standard Python REPL, For example:
Note that there is no such functionality within Python scripts. In a script, Also, beware of reassigning
To undo the assignment (and remove the
then the functionality will be back to normal (the |
||||
|
|
|
Usually, we are using _ in Python to bind a ugettext function. |
||
|
|
|
Why you can't see it? It is in
So it's neither global nor local. And where does this assignment happen?
|
||
|
|