# Reverse a list of items so that the 1st item # becomes the last etc original=["black","white","acquamarine","ultramarine","brown"] reversed=[] for x in original: # Insert each item from the original list # at the start of the reverse list reversed.insert(0,x) print "Original list",original print "Reversed list",reversed