Is the single underscore "_" a built-in variable in Python?
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 >>>