Home
Press ? for keyboard navigation
❮
break
While with many conditions
❯
continue
continue
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
Index (i)
Table of Contents (t)
Indexed keywords (k)
Chapter TOC (d)
Hide/Show (h)