Simple Programs
Simple Python example programs illustrating language features in the simplest possible form. For example, #2 Looping
for name in ['peter', 'paul', 'mary']:is a concise but definitive explain-by-example how to write a loop in Python. The biggest one (Classes or itertools) is only about a dozen lines. Neat idea, and good resource for those learning Python.
print name

