Possible Duplicate:
Python: Continuing to next iteration in outer loop
Maybe the title is kind of confusing but you will understand what i mean in the code:
for item in items: #i want to skip one loop of this bucle
for i in item: #loop nº2
if i==5:
continue #but this only skip a loop in nº2, there's no propagation
How can i get this to work? Thanks in advance.