Loops/Continue: Difference between revisions

m (Moved to Iteration cat)
Line 156:
 
=={{header|Python}}==
<python>line = ""
for i in xrange(1,11):
line += str(i)
if i % 5 == 0:
print linei
line = ""
continue
lineprint +=i, ", "</python>,
</python>
 
=={{header|UnixPipes}}==
Anonymous user