В языке Python я хочу пропустить строки цикла диапазона (или xrange) без прерывания цикла, как показано ниже:
for i in range(10):
... some code happening
... some code happening
if (some statement == True):
skip the next lines of the loop, but do not break the loop until finished
... some code happening
... some code happening