I test the following code:
for i in range(3):
for i in range(3,5):
print "inner i: %d"%(i)
print "outer i: %d"%(i)
and the output is:
inner i: 3
inner i: 4
outer i: 4
inner i: 3
inner i: 4
outer i: 4
inner i: 3
inner i: 4
outer i: 4
I don't understand why in the outer loop the i
is 4 but the outer loop still runs for 3 times. It seems that the the variable i
in the print "outer i: %d"%(i)
line is the i
in the inner loop , but when goes to the for i in range(3)
it uses the i in the outer loop.
Anyone can explain this? It's a little confusing to me now.
In the inner loop you are assigning a different variable to i. Since it is the same variableit always prints 4 (the last value i was assigned in the inner loop. However, when you go to the next iteration of outer loop it will be set to the next value (i.e. 2 for the second outer loop). You should print outer loop before the inner loop to see the effect more clearly:
Its the same i being used in both loops. When the outer loops gets a chance to print i, it will always have the last assigned value from the inner loop.
Check @heltonbiker answer :
You read
i
data on wrong time (place)!If there is a single
BUS
orVariable name
You must use theFIFO
method.FIFO << Here information
Notice how the output is always
for every outer loop.
The program takes the final value of
i
in each iteration.ie. when the outer loop starts execution,
i
is either 0, 1 or 2 but the value ofi
is modified in the inner for loop, which is getting printed.Update:
Output
It's the same
i
, Python doesn't have block scope. At the beginning of each for-loop iteration, you assign the the next value in the iterator toi
. Python for-loops aren't like C/Java for-loops, they are foreach loops. The continue until the iterator is exhausted (or youbreak
out somehow). A for-loop is equivalent to the following while-loop:So, your nested loop is the equivalent of this:
Note, a C/Java for-loop, e.g.:
Would be in Python:
In other words, the classic-for-loop depends on
i
, that is, the termination condition depends on the value ofi
. But in a for-each loop, the termination condition depends on the iterator. And it doesn't matter what you do to the variable inside the body, at the beginning of each iteration, it is assigned the next value of the iterator.There's only one
i
, not two. When the inner loop is entered, it changesi
, and keeps changing it until the inner loop exits. The next iteration of the outer loop then setsi
to the next value in its range, but you never see it because you immediately enter the inner loop once more, again changingi
.This is of course very bad practice. You should never modify the variable in a
for
loop while that loop is active.