Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

7 Answers

up vote 72 down vote accepted

You can make use of the reversed function for this as:

>>> array=[0,10,20,40]
>>> for i in reversed(array):
...     print i
share|improve this answer
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]

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.

share|improve this answer
4  
It works for any interable, not just lists. Disadvantage is that it's not in place. – Swiss Oct 15 '10 at 7:04
2  
@Tim it returns a slice, so doesn't change the actual list contents – fortran Oct 15 '10 at 7:04
5  
the reversed() container is more clear. – lunixbochs Oct 15 '10 at 7:05
2  
@lunixbochs reversed returns an iterator and not a list in Python 3. – Swiss Oct 15 '10 at 7:09
1  
@Swiss right, but the OP's example was an iteration :) – lunixbochs Oct 15 '10 at 7:16
show 9 more comments
>>> L = [0,10,20,40]
>>> L.reverse()
>>> L
[40, 20, 10, 0]

Or

>>> L[::-1]
[40, 20, 10, 0]
share|improve this answer
the second works like magic, could you explain the syntax? – yozloy Aug 8 '12 at 7:47
3  
[start:stop:step] so step is -1 – papalagi Sep 26 '12 at 3:36
for x in array[::-1]:
    do stuff
share|improve this answer
array=[0,10,20,40]
for e in reversed(array):
  print e
share|improve this answer

The most direct translation of your requirement into Python is this for statement:

for i in xrange(len(array) - 1, -1, -1):
   print i, array[i]

This is rather cryptic but may be useful.

share|improve this answer

You just need to think backwards.

for (i=array.length(); i>0; i--)
share|improve this answer
7  
That's fantastic Python code you've got there! +1 for the joke on "thinking backwards" to a question about being reversed! – André Caron Oct 15 '10 at 7:02
3  
And have you ever seen any Python code? – Krzysztof Bujniewicz Oct 15 '10 at 7:03
9  
I'll revoke my downvote if Twitch can name any language where that code is correct. – Matthew Flaschen Oct 15 '10 at 7:03
I wasn't attempting to be coding-correct, I was giving the opposite of the code he had given before the edit. Don't downvote based on the current code he has at the top. – Twitch Oct 17 '10 at 6:28
1  
Right because the best way to solve a question that has a mistake in it is by giving an equally flawed answer... – Razor Storm Oct 10 '11 at 23:47
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.