vote up 0 vote down star
indices[i:] = indices[i+1:] + indices[i:i+1]

Hope someone helps.

flag

try google...... – Mitch Wheat May 16 at 12:48
1  
not familiar with python, so am not sure what this does. Seems like it could be explained in a sentence. Then I could try to help. – MasterPeter May 16 at 13:27

2 Answers

vote up 5 vote down check

I'm fairly new to Python but if I understand the code correctly, it reconstructs a list from a given offset into every item following offset+1 and the item at the offset.

Running it seems to confirm this:

>>> indices = ['one','two','three','four','five','six']
>>> i = 2
>>> indices[i:] = indices[i+1:] + indices[i:i+1]
>>> indices
['one', 'two', 'four', 'five', 'six', 'three']

In Javascript can be written:

indices = indices.concat( indices.splice( i, 1 ) );

Same entire sequence would go:

>>> var indices = ['one','two','three','four','five','six'];
>>> var i = 2;
>>> indices = indices.concat( indices.splice( i, 1 ) );
>>> indices
["one", "two", "four", "five", "six", "three"]

This works because splice is destructive to the array but returns removed elements, which may then be handed to concat.

link|flag
Is it obvious that the last sentence is contrived just to fit in some links to the methods on MDC? :-) – Borgar May 17 at 2:03
what javascript command line is that? – Paolo Bergantino May 17 at 2:18
3  
It is an imaginary command line. I ran the code with FireBug but added the >>> in the end simply to make it look the same as the Python block. :-) – Borgar May 17 at 15:54
Tricky, tricky. ;) – Paolo Bergantino May 18 at 4:10
@Borgar, I will buy your imaginary command line. How much does it cost, in Quatloos? – Nosredna May 29 at 23:19
vote up 1 vote down

You will want to look at Array.slice()

var temp=indices.slice(i+1).concat(indices.slice(i, i+1));
var arr=[];
for (var j=0; j<temp.length; j++){
   arr[j+i]=temp[i];
}
link|flag

Your Answer

Get an OpenID
or

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