Can anyone recommend a good concise reference for the Python slice notation? I'm a seasoned programmer but new to Python and this notation needs a bit of picking up. It looks extremely powerful, but I haven't quite got my head round it and am looking for a good guide.

link|improve this question

56% accept rate
11  
what's wrong with the tutorial? docs.python.org/tutorial/introduction.html#strings yeah, i know... seasoned programmers can't be asked to. – hop Feb 4 '09 at 0:04
feedback

11 Answers

up vote 155 down vote accepted

It's pretty simple really:

a[start:end] # items start through end-1
a[start:]    # items start through the rest of the array
a[:end]      # items from the beginning through end-1
a[:]         # a copy of the whole array

There is also the step value, which can be used with any of the above:

a[start:end:step] # start through not past end, by step

The key point to remember is that the :end value represents the first value that is not in the selected slice. So, the difference beween end and start is the number of elements selected (if step is 1, the default).

The other feature is that start or end may be a negative number, which means it counts from the end of the array instead of the beginning. So:

a[-1]    # last item in the array
a[-2:]   # last two items in the array
a[:-2]   # everything except the last two items

Python is kind to the programmer if there are fewer items than you ask for. For example, if you ask for a[:-2] and a only contains one element, you get an empty list instead of an error. Sometimes you would prefer the error, so you have to be aware that this may happen.

link|improve this answer
3  
You should add something about negative slice notation as well, to make it a complete answer. – Soviut Feb 3 '09 at 22:59
good idea, thanks. – Greg Hewgill Feb 3 '09 at 23:40
65  
and a[::-1] to reverse a string. – Christopher Mahan Feb 3 '09 at 23:54
Great overview! – CodeJustin.com Mar 2 '10 at 20:55
Where do commas fit in with multi-dimensional arrays? – ajwood Sep 14 '11 at 0:31
feedback

The tutorial talks about it:

http://docs.python.org/tutorial/introduction.html#strings

(Scroll down a bit until you get to the part about slicing.)

The ASCII art diagram is helpful too for remembering how slices work:

 +---+---+---+---+---+
 | H | e | l | p | A |
 +---+---+---+---+---+
 0   1   2   3   4   5
-5  -4  -3  -2  -1

"One way to remember how slices work is to think of the indices as pointing between characters, with the left edge of the first character numbered 0."

link|improve this answer
2  
I use this diagram, with the indexes labeled in the middle of each character as well (to explicitly contrast slicing with indexing). – Thomas Feb 9 '11 at 14:57
feedback

And a couple of things that weren't immediately obvious to me when I first saw the slicing syntax:

>>> x = [1,2,3,4,5,6]
>>> x[::-1]
[6,5,4,3,2,1]

Easy way to reverse sequences!

And if you wanted, for some reason, every second item in the reversed sequence:

>>> x = [1,2,3,4,5,6]
>>> x[::-2]
[6,4,2]
link|improve this answer
7  
reversed() would be better – hop Feb 4 '09 at 0:07
1  
It gets tricky when using negative steps with start and end. It seems like using a negative step maps begin and end into the negative space. I.e., if you want to select only parts of something reversed by "[::-1]" you will have to use e.g. [1,2,3,4][-1:-5:-1] => [4, 3, 2, 1]. This is trial and error - I've just ran across this. – blueyed Feb 4 '11 at 11:54
feedback

Enumerating the possibilities allowed by the grammar:

>>> seq[:]                # [seq[0],   seq[1],          ..., seq[-1]    ]
>>> seq[low:]             # [seq[low], seq[low+1],      ..., seq[-1]    ]
>>> seq[:high]            # [seq[0],   seq[1],          ..., seq[high-1]]
>>> seq[low:high]         # [seq[low], seq[low+1],      ..., seq[high-1]]
>>> seq[::stride]         # [seq[0],   seq[stride],     ..., seq[-1]    ]
>>> seq[low::stride]      # [seq[low], seq[low+stride], ..., seq[-1]    ]
>>> seq[:high:stride]     # [seq[0],   seq[stride],     ..., seq[high-1]]
>>> seq[low:high:stride]  # [seq[low], seq[low+stride], ..., seq[high-1]]

Of course, if (high-low)%stride != 0, then the end point will be a little lower than high-1.

Extended slicing (with commas and ellipses) are mostly used only by special data structures (like Numpy); the basic sequences don't support them.

>>> class slicee:
...     def __getitem__(self, item):
...         return `item`
...
>>> slicee()[0, 1:2, ::5, ...]
'(0, slice(1, 2, None), slice(None, None, 5), Ellipsis)'
link|improve this answer
The 10 in the final output line should be a 5. – Lee D Apr 19 at 3:16
@LeeD Right you are, thanks. – ephemient Apr 19 at 3:37
feedback

The answers above don't discuss slice assignment:

>>> r=[1,2,3,4]
>>> r[1:1]
[]
>>> r[1:1]=[9,8]
>>> r
[1, 9, 8, 2, 3, 4]
>>> r[1:1]=['blah']
>>> r
[1, 'blah', 9, 8, 2, 3, 4]

This may also clarify the difference between slicing and indexing.

link|improve this answer
feedback

After using it a bit I realise that the simplest description is that it is exactly the same as the arguments in a for loop...

(from:to:step)

any of them are optional

(:to:step)
(from::step)
(from:to)

then the negative indexing just needs you to add the length of the string to the negative indices to understand it.

This works for me anyway...

link|improve this answer
Well, a for loop in some other language, that is... – David Perlman Sep 28 '11 at 16:14
feedback

Found this great table at http://wiki.python.org/moin/MovingToPythonFromOtherLanguages

Python indexes and slices for a six-element list.
Indexes enumerate the elements, slices enumerate the spaces between the elements.

Index from rear:    -6  -5  -4  -3  -2  -1      a=[0,1,2,3,4,5]    a[1:]==[1,2,3,4,5]
Index from front:    0   1   2   3   4   5      len(a)==6          a[:5]==[0,1,2,3,4]
                   +---+---+---+---+---+---+    a[0]==0            a[:-2]==[0,1,2,3]
                   | a | b | c | d | e | f |    a[5]==5            a[1:2]==[1]
                   +---+---+---+---+---+---+    a[-1]==5           a[1:-1]==[1,2,3,4]
Slice from front:  :   1   2   3   4   5   :    a[-2]==4
Slice from rear:   :  -5  -4  -3  -2  -1   :
                                                b=a[:]
                                                b==[0,1,2,3,4,5] (shallow copy of a)
link|improve this answer
feedback

Do you mean http://www.python.org/doc/2.5.2/ref/slicings.html#tok-slicing ?

Or http://docs.python.org/reference/expressions.html#grammar-token-slicing ?

Or http://docs.python.org/3.0/library/functions.html#slice

Or something else?

link|improve this answer
well, it's probably in there somewhere... this is a bit too concise. I guess what I am really looking for is some help coming to grips with it rather than the full definition of the grammar. – Simon Feb 3 '09 at 22:38
gulp, and now two other references... – Simon Feb 3 '09 at 22:40
Different versions -- 2.5, 2.6, 3.0 -- three views of the same underlying thing. – S.Lott Feb 3 '09 at 22:53
feedback

I use the "an index points between elements" method of thinking about it myself, but one way of describing it which sometimes helps others get it is this:

mylist[X:Y]

X is the index of the first element you want.
Y is the index of the first element you don't want.

link|improve this answer
feedback

I find it easier to remember how it's works, then I can figure out any specific start/stop/step combination.

It's instructive to understand range() first:

def range(start=0, stop, step=1):  # illegal syntax, but that's the effect
    i = start
    while (i < stop if step > 0 else i > stop):
        yield i
        i += step

Begin from start, increment by step, do not reach stop. Very simple.

The thing to remember about negative step is that stop is always the excluded end, whether it's higher or lower. If you want same slice in opposite order, it's much cleaner to do the reversal separately: e.g. 'abcde'[1:-2][::-1] slices off one char from left, two from right, then reverses. (See also reversed().)

Sequence slicing is same, except it first normalizes negative indexes, and can never go outside the sequence:

def this_is_how_slicing_works(seq, start=None, stop=None, step=1):
    if start is None:
        start = (0 if step > 0 else len(seq)-1)
    elif start < 0:
        start += len(seq)
    if stop is None:
        stop = (len(seq) if step > 0 else -1)  # really -1, not last element
    elif stop < 0:
        stop += len(seq)
    for i in range(start, stop, step):
        if 0 <= i < len(seq):
            yield seq[i]

Don't worry about the is None details - just remember that omitting start and/or stop always does the right thing to give you the whole sequence.

Normalizing negative indexes first allows start and/or stop to be counted from the end independently: 'abcde'[1:-2] == 'abcde'[1:3] == 'bc' despite range(1,-2) == []. The normalization is sometimes thought of as "modulo the length" but note it adds the length just once: e.g. 'abcde'[-53:42] is just the whole string.

link|improve this answer
feedback

This is just for some extra info... Consider the list below

l=[12,23,345,456,67,7,945,467]

Another trick for reversing a list may be :

l[len(l):-len(l)-1:-1] [467, 945, 7, 67, 456, 345, 23, 12]

l[:-len(l)-1:-1] [467, 945, 7, 67, 456, 345, 23, 12]

l[len(l)::-1] [467, 945, 7, 67, 456, 345, 23, 12]

l[::-1] [467, 945, 7, 67, 456, 345, 23, 12]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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