Loops and Lists
March 01, 2018
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
Recent Entries
- Entropy November 13, 2025
- The Unquiet Past November 12, 2025
- King Sorrow October 22, 2025