0% completed
for i in range(5): if i == 3: break print(i)
x = 5 while x > 0: x -= 1 if x == 2: continue print(x)
.....