for ele in eles:
for i in xrange(10):
try:
#do something
break
except:
continue
else:
if some condition:
continue
#do something
consider above code, i know the break
will break the inner for loop, the first continue
will continue inner for loop, what about the second continue
? which for loop will it continue?