Open up iPython and type this:
/
Hit enter and wonder about the result:
()
You cannot assign it, my guess it has something to do with the shell functionality.
Edit:
You can assign it with:
p = Out[xx]
But not directly:
p = /
will give:
SyntaxError
It is indeed an empty tuple.