In python language, I want to skip lines of a range loop (or xrange) without breaking the loop, as illustrated below:
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