I realize that the title may be somewhat confusing, so I apologize.
Basically, this is my code:
while i < 5:
do stuff
if i == 3:
print "i is 3"
break
Now all that sounds pretty simple, right? Except I don’t really want to BREAK from the loop as much as I’d want it to start over again. So in this case the desired result would be to iterate through 1, 2, then when 3 break out, but then continue iterating with 4. How do I do that?
1 Answer