n = 12
i = 1
while i<=12:
print i,"x 8 =", i*8
i=i+1
print "hello world"
while true:
pass # loop die niets doet.
Add A Comment
You must be logged in to post a comment.
n = 12
i = 1
while i<=12:
print i,"x 8 =", i*8
i=i+1
print "hello world"
while true:
pass # loop die niets doet.
You must be logged in to post a comment.