Is the single underscore "_" a built-in variable in Python?

Viewed 5920

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
>>> 
3 Answers
Related