I have overriden the underscore variable _ in the Python interactive interpreter. How can I make the underscore work again without restarting the interpreter?
>Solution :
del _
A global _ shadows the builtin _, so deleting the global reveals the builtin again.