Loops/Continue: Difference between revisions

→‎{{header|Python}}: Python 2 -> Python 3
(Add lang example)
(→‎{{header|Python}}: Python 2 -> Python 3)
Line 1,950:
 
=={{header|Python}}==
<syntaxhighlight lang="python">for i in xrangerange(1, 11):
if i % 5 == 0:
print (i)
continue
print (i, ","end=', ')</syntaxhighlight>
 
=={{header|Quackery}}==
6

edits