In other languages
for(i=0; i<10; i++){
if(...){
i = 4;
}
}
the loop will go up, but in python,it doesn't work
for i in range(1, 11):
if ...:
i = 4
So can I go up in a loop with 'for'?
|
In other languages
the loop will go up, but in python,it doesn't work
So can I go up in a loop with 'for'? | ||||
feedback
|
|
Python does not permit you to modify your looping variable inline. If you wish to do this you should do the following
This should have the effect you desire. You can also do the following:
Both have the same effect. | |||||
|
feedback
|
|
One possibility is that you want to skip items. Everything to do with looping over an index is ugly but here's a way to do that with a while loop.
It's better to loop over items of the list that you want to work with directly and just skip the items that you don't want to deal with.
Or use a generator expression to filter the items
| ||||
|
feedback
|
|
The problem here is that | |||
|
feedback
|
|
Mind you that is just a bad idea. Changing iteration variable inside a for loop? In my eyes thats equivalent to a goto statement. Why don't you just ask what you want to accomplish?
The while loop solutions that others posted are correct translations, but that is not a very good idea either. | ||||
|
feedback
|
|
For this case, you may want to use while loop instead of for loop in Python. For example:
| |||
|
feedback
|
|
Just some food for thought. The for loop loops over an iterable. Create your own iterable that you can move forward yourself.
xrange() is an iterating version of range() iterable = xrange(11) would behave as an iterator. itertools provides nice functions like dropwhile http://docs.python.org/library/itertools.html#itertools.dropwhile This can proceed your iterator for you.
dropwhile could be called outside your loop to create the iterator over your iteratator. Then you can simply call next() on it. Since the for loop and the dropwhile are both calling next() on the same iterator you have some control over it. You could also implement your own iterator that uses send() to allow you to manipulate the iterator. http://onlamp.com/pub/a/python/2006/10/26/python-25.html?page=2 | |||
|
feedback
|