It seems so "dirty" emptying a list in this way:
while len(alist) > 0 : alist.pop()
Does a clear way exist to do that?
|
|
This actually removes the contents from the list, not replaces the old label with a new empty list
example:
For the sake of completeness, slice assignment achieves the same effect:
and can be used to shrink a part of the list while replacing a part at the same time (but is out of scope of the question). Note that doing |
|||||||||||||||||||
|
|
You could try:
Which means: Splice in the list The [:] is the slice operator. See this question for more information. |
|||||||||||
|
|
it turns out that with python 2.5.2,
|
|||||
|
will reset Note that you generally should not shadow reserved function names, such as |
|||||||||||||||||||
|