How can i do this in python?
array=[0,10,20,40]
for (i = array.length() - 1 ;i >= 0; i--)
I need to have the elements of an array but from the end to the beginning.
|
|
|
You can make use of the
|
||||
|
|
Extended slice syntax is explained well here: http://docs.python.org/release/2.3.5/whatsnew/section-slices.html By special request in a comment this is the most current slice documentation. |
|||||||||||||||||||||
|
Or
|
|||
|
The most direct translation of your requirement into Python is this
This is rather cryptic but may be useful. |
|||
|
|
|
You just need to think backwards.
|
|||||||||||||||||||
|