in the following example:
foo = [\'red\', \'white\', \'blue\', 1, 2, 3]
where: foo[0:6:1] will print all elements in foo. Howe
foo[0:6:1]
Use
>>>foo[::-1]
This displays the reverse of the list from the end element to the start,