I started looking at loops and lists today - while it's snowing outside. More snow tomorrow apparently. The new addition today is the range() function.

elements = []

for i in range(1, 6):
    print "Adding number %d" % i
    elements.append(i)


for i in elements:
    print "The numbers %d" % i