Consider the following...
In [1]: del []
In [2]: del {}
File "<ipython-input-2-24ce3265f213>", line 1
SyntaxError: can't delete literal
In [3]: del ""
File "<ipython-input-3-95fcb133aa75>", line 1
SyntaxError: can't delete literal
In [4]: del ["A"]
File "<ipython-input-5-d41e712d0c77>", line 1
SyntaxError: can't delete literal
What is special about []? I would expect this to raise a SyntaxError too. Why doesn't it? I've observed this behavior in Python2 and Python3.
[] = ()works, but"" = ""doesn't – Thomas Orozco Jan 12 at 23:46