Return to Snippet

Revision: 45941
at May 11, 2011 11:16 by silviud


Initial Code
>>> a
['one', 'two', 'three']
>>> for i in a[::-1]:
...     print i
... 
three
two
one

Initial URL

                                

Initial Description

                                

Initial Title
Reverse loop on list

Initial Tags

                                

Initial Language
Python