Python strange behavior in for loop or lists - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:03:21Zhttp://stackoverflow.com/feeds/question/742371http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists2Python strange behavior in for loop or listsrogeriopvl2009-04-12T20:30:22Z2009-11-07T17:12:18Z
<p>Hi, I'm currently developing a program in python and I just noticed that something was wrong with the foreach loop in the language, or maybe the list structure. I'll just give a generic example of my problem to simplify, since I get the same erroneous behavior on both my program and my generic example:</p>
<pre><code>x = [1,2,2,2,2]
for i in x:
x.remove(i)
print x
</code></pre>
<p>Well, the problem here is simple, I though that this code was supposed to remove all elements from a list. Well, the problem is that after it's execution, I always get 2 remaining elements in the list.</p>
<p>What am I doing wrong? Thanks for all the help in advance.</p>
<p>Edit: I don't want to empty a list, this is just an example...</p>
http://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists/742383#74238314Answer by Chris Jester-Young for Python strange behavior in for loop or listsChris Jester-Young2009-04-12T20:36:58Z2009-04-12T20:36:58Z<p>This is a well-documented behaviour in Python, that you aren't supposed to modify the list being iterated through. Try this instead:</p>
<pre><code>for i in x[:]:
x.remove(i)
</code></pre>
<p>The <code>[:]</code> returns a "slice" of <code>x</code>, which happens to contain all its elements, and is thus effectively a copy of <code>x</code>.</p>
http://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists/742386#7423865Answer by Erik for Python strange behavior in for loop or listsErik2009-04-12T20:37:18Z2009-04-12T20:37:18Z<p>When you delete an element, and the for-loop incs to the next index, you then skip an element.</p>
<p>Do it backwards. Or please state your real problem.</p>
http://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists/742388#7423883Answer by fluffels for Python strange behavior in for loop or listsfluffels2009-04-12T20:38:05Z2009-04-12T20:38:05Z<p>Why don't you just use:</p>
<pre><code>x = []
</code></pre>
<p>It's probably because you're changing the same array that you're iterating over.</p>
<p>Try Chris-Jester Young's answer if you want to clear the array your way.</p>
http://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists/742906#7429060Answer by John Fouhy for Python strange behavior in for loop or listsJohn Fouhy2009-04-13T02:43:03Z2009-04-13T02:43:03Z<p>I think, broadly speaking, that when you write:</p>
<pre><code>for x in lst:
# loop body goes here
</code></pre>
<p>under the hood, python is doing something like this:</p>
<pre><code>i = 0
while i < len(lst):
x = lst[i]
# loop body goes here
i += 1
</code></pre>
<p>If you insert <code>lst.remove(x)</code> for the loop body, perhaps then you'll be able to see why you get the result you do?</p>
<p>Essentially, python uses a moving pointer to traverse the list. The pointer starts by pointing at the first element. Then you remove the first element, thus making the <em>second</em> element the new first element. Then the pointer move to the new second – previously third – element. And so on. (it might be clearer if you use [1,2,3,4,5] instead of [1,2,2,2,2] as your sample list)</p>
http://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists/1693733#16937331Answer by eryksun for Python strange behavior in for loop or listseryksun2009-11-07T17:12:18Z2009-11-07T17:12:18Z<p>I agree with John Fouhy regarding the break condition. Traversing a copy of the list works for the remove() method, as Chris Jester-Young suggested. But if one needs to pop() specific items, then iterating in reverse works, as Erik mentioned, in which case the operation can be done in place. For example:</p>
<pre><code>def r_enumerate(iterable):
"""enumerator for reverse iteration of an iterable"""
enum = enumerate(reversed(iterable))
last = len(iterable)-1
return ((last - i, x) for i,x in enum)
x = [1,2,3,4,5]
y = []
for i,v in r_enumerate(x):
if v != 3:
y.append(x.pop(i))
print 'i=%d, v=%d, x=%s, y=%s' %(i,v,x,y)
</code></pre>
<p><br>
or with xrange:
<br></p>
<pre><code>x = [1,2,3,4,5]
y = []
for i in xrange(len(x)-1,-1,-1):
if x[i] != 3:
y.append(x.pop(i))
print 'i=%d, x=%s, y=%s' %(i,x,y)
</code></pre>