Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
In the same fashion: [] = () works, but "" = "" doesn't – Thomas Orozco Jan 12 at 23:46

1 Answer

up vote 12 down vote accepted

The del statement syntax allows for a target_list, and that includes a list or tuple of variable names.

It is intended for deleting several names at once:

del [a, b, c]

which is the equivalent of:

del (a, b, c)

or

del a, b, c

But python does not enforce the list to actually have any elements.

The expression

del ()

on the other hand is a syntax error; () is seen as a literal empty tuple in that case.

share|improve this answer
Thank you for the explanation, something interesting to note though is that del () gives us SyntaxError: can't delete () instead of SyntaxError: can't delete literal, which might mean it is checked separately. For some reason it does not check that for lists. :) – frb Jan 12 at 23:51
But in the docs, neither target nor target_list can be empty. Seems quite odd the Syntax error for () but not for [] – JBernardo Jan 12 at 23:51
Maybe this is an implementation thing? – frb Jan 12 at 23:53
1  
@frb: it's the parser that gives those errors; and I am 90% certain that's because parenthesis also can group expressions together, not just create tuples. – Martijn Pieters Jan 12 at 23:53
1  
Probably the docs are wrong: target can contain starred expressions, but yet you can't do del a, *b. Also target_list must contain at least one target and [] is not a valid target just the way () isn't also – JBernardo Jan 13 at 0:09
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.