continue
❮ break While with many conditions ❯
examples/strings/continue.py
i = 0 while True: i += 1 if i > 3 and i < 8: continue if i > 10: break print(i)
1 2 3 8 9 10