vote up 0 vote down star

This question is just out of general curiosity. I've just noticed it when working on my current project (surprisingly I haven't came across before today).

Take this code:

List = ["hi","stack","over","flow","how","you","doing"]
del List(len(List)-1)

Error:

SyntaxError: can't delete function call

I don't understand why you aren't allowed to delete an index of a list by referencing a call to a function? Do I just shut up and accept you can't do it or am I doing something fundamentally wrong?

I apologise if there is an easy answer to this but either Google is getting less helpful or this is so blatantly obvious I need help.

flag

2  
It's a bad idea to call a list-instance List, you could easily confuse one for the other. – gs Oct 8 at 10:26
Please fix the title to this question. You're intent is not to delete a function call but to use a function call with delete. Not "delete function call" but "Use del with a function call" or something more clear and more descriptive of what you're trying to do. – S.Lott Oct 8 at 10:44
"Delete the result of a function call", perhaps. – jleedev Oct 8 at 10:46
1  
The title represents the error. Usually when I encounter an error, I simply paste the error into google to see what I get back. Hence why I named it this. I figured you might have worked that out. – _bravado Oct 8 at 11:00
1  
Congratulations, we're the first hit on Google for "can't delete function call". – jleedev Oct 8 at 11:06
show 1 more comment

3 Answers

vote up 10 vote down check

You meant to delete the last element of the list, not somehow call List as a function:

del List[len(List)-1]

Python's del statement must take specific forms like deleting a variable, list[element], or object.property. These forms can be nested deeply, but must be followed. It parallels the assignment statement -- you'll get a similar syntax error if you try to assign to a function call.

Of course, what you really want in this case is

del List[-1]

which means the last element of the list, and is way more Pythonic.

link|flag
+1: Delete might work with a call to a function, but the example is obviously an object named List. Not a function named List. – S.Lott Oct 8 at 10:41
Nope, it's a syntax error regardless. The simplest form "del x" means delete the name "x". "del x[y]" and "del x.y" send various messages to the object x with y as the parameter. While you might come up with a valid use case to define "del x(y)", it's not Python. – jleedev Oct 8 at 10:46
vote up 4 vote down

You are calling a function List() when you should be indexing a list, List[].

In Python, Round parenthesis, (), are used to call functions, while square brackets, [] are used to index lists and other sequences.

Try:

del List[len(List) - 1]

or even better, use the fact that Python allows negative indexes, which count from the end:

del List[-1]

Also, you might want to make the list's name not so close to the built-in list type name, for clarity.

link|flag
Oh for the love of God, I feel like an idiot. Thanks a lot! – _bravado Oct 8 at 10:22
2  
List[len(List) - 1] is not "pythonic", you want to do List[-1] as jleedev suggests. – Kimvais Oct 8 at 10:24
@Kimvais: good point, I added that. – unwind Oct 8 at 10:26
vote up 1 vote down

You are allowed. However, you are using the wrong syntax. Correct syntax is:

del List[-1]

Notice that the "len(List) part is useless.

link|flag

Your Answer

Get an OpenID
or

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