vote up 5 vote down star

I find it annoying that I can't clear a list. In this example:

a = []
a.append(1)
a.append(2)

a = []

The second time I initialize a to a blank list, it creates a new instance of a list, which is in a different place in memory, so I can't use it to reference the first, not to mention it's inefficient.

The only way I can see of retaining the same pointer is doing something like the following:

for i in range(len(a)):
    a.pop()

This seems pretty long-winded though, is there a better way of solving this?

flag

76% accept rate
Please expand on "which is in a different place in memory, so I can't use it to reference the first" This makes very little sense in a Python context. Maybe in C++, but not in Python. – S.Lott Oct 3 '08 at 12:24
I was merely pointing out that if I have a reference to this object from within another object, the 'new' a is now a different one to the first, so I can't use this same reference to modify the new a. Python still has the concept of pointers and memory management, it just hides it from you. – Dan Oct 3 '08 at 13:38
"the 'new' a is now a different one to the first" While absolutely true, I can't see a situation where this matters. A more complete code example might help explain where this would actually matter. – S.Lott Oct 3 '08 at 13:45

2 Answers

vote up 25 vote down check

You are looking for:

del L[:]
link|flag
Similarly, you can also do L[:] = [] – Moe Oct 3 '08 at 17:57
vote up 4 vote down

I'm not sure why you're worried about the fact that you're referencing a new, empty list in memory instead of the same "pointer".

Your other list is going to be collected sooner or later and one of the big perks about working in a high level, garbage-collected language is that you don't normally need to worry about stuff like this.

link|flag
He may be holding a reference to the list in another part of the program that would need to know that the list is empty. – Jason Baker Oct 3 '08 at 11:48
Maybe, but that's not what he asked. He was worried instead about losing a pointer to that particular location in memory, which is a dubious concept in Python anyhow. – Dana Oct 3 '08 at 11:52
He later clarified it in a comment. – ΤΖΩΤΖΙΟΥ Oct 4 '08 at 9:33

Your Answer

Get an OpenID
or

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