Heres the python code im having problems with:
for i in range (0,10): if i==5: i+=3 print i
I expected the output to be:
it = iter(xrange (0,10)) for i in it: if i==4: all(it.next() for a in xrange(3)) print i
or
it = iter(xrange (0,10)) itn = it.next for i in it: if i==4: all(itn() for a in xrange(3)) print i