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.
|
5
|
|||
|
|
|
It's pretty simple really:
There is also the
The key point to remember is that the The other feature is that
Python is kind to the programmer if there are fewer items than you ask for. For example, if you ask for |
||||||
|
|
|
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...
any of them are optional
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... |
||
|
|
|
|
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:
X is the index of the first element you want. |
||
|
|
|
|
And a couple of things that weren't immediately obvious to me when I first saw the slicing syntax:
Easy way to reverse sequences! And if you wanted, for some reason, every second item in the reversed sequence:
|
||
|
|
|
Enumerating the possibilities allowed by the grammar:
Of course, if Extended slicing (with commas and ellipses) are mostly used only by special data structures (like Numpy); the basic sequences don't support them.
|
||
|
|
|
|
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:
|
||
|
|
|
|
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? |
||||||
|
