indices[i:] = indices[i+1:] + indices[i:i+1]
Hope someone helps.
|
|
Hope someone helps.
|
||||||
|
|
|
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:
In Javascript can be written:
Same entire sequence would go:
This works because splice is destructive to the array but returns removed elements, which may then be handed to concat. |
||||||||||||
|
|
|
You will want to look at Array.slice()
|
|||
|
|