Learning to Program in Python for Kids

of all ages  by Philip M Russell

for count in range(1,11):

print "The counter is  ",count

The systax for range is

range (start, end,increment)

start = 1

end = 11 ( so we can show 10) when we get to 11 we stop and don't do it.

increment is ignored because it's 1