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.
feedback
|
|
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 | |||||||||||||||
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:
| |||||
feedback
|
|
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:
| |||||||||
feedback
|
|
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.
| |||||
|
feedback
|
|
The answers above don't discuss slice assignment:
This may also clarify the difference between slicing and indexing. | ||||
|
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...
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... | |||
|
feedback
|
|
Found this great table at http://wiki.python.org/moin/MovingToPythonFromOtherLanguages
| |||
|
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? | |||||||
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:
X is the index of the first element you want. | |||
|
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
Begin from The thing to remember about negative step is that Sequence slicing is same, except it first normalizes negative indexes, and can never go outside the sequence:
Don't worry about the Normalizing negative indexes first allows start and/or stop to be counted from the end independently: | ||||
|
feedback
|
|
This is just for some extra info... Consider the list below
Another trick for reversing a list may be :
| ||||
|
feedback
|