Do you have a good reference on the Python slice notation? To me, 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.
|
|
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 |
|||||||||||||||||||
|
|
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:
|
|||||
|
|
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.
|
||||
|
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:
|
|||||||||
|
|
The answers above don't discuss slice assignment:
This may also clarify the difference between slicing and indexing. |
||||
|
Found this great table at http://wiki.python.org/moin/MovingToPythonFromOtherLanguages
|
|||
|
|
|
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. |
|||
|
|
|
This is just for some extra info... Consider the list below
Another trick for reversing a list may be :
|
||||
|
|
hope this will help you to model the list in Python reference:http://wiki.python.org/moin/MovingToPythonFromOtherLanguages |
|||
|
|
|
You can also use slice assignment to remove one or more elements from a list:
|
||||
|
|
|
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? |
|||||||
|
|
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: |
||||
|
|
|
In python 2.7 Slicing in python [a:b:c] len = length of string, tuple or list c -- default is +1. sign of c indicates forward or backward, absolute value of c indicates steps. Default is forward with step size 1. Positive means forward, negative means backward. a -- when c is positive or blank, default is 0. when c is negative, default is -1. b -- when c is positive or blank, default is len. when c is negative, default is -(len+1). Understanding index assignment is very important. In forward direction, starts at 0 and ends at len-1 In backward direction, starts at -1 and ends at -len when you say [a:b:c] you are saying depending on sign of c (forward or backward), start at a and end at b ( excluding element at bth index). Use the indexing rule above and remember you will only find elements in this range -len, -len+1, -len+2, ..., 0, 1, 2,3,4 , len -1 but this range continues in both directions infinitely ...,-len -2 ,-len-1,-len, -len+1, -len+2, ..., 0, 1, 2,3,4 , len -1, len, len +1, len+2 , .... e.g.
if your choice of a , b and c allows overlap with the range above as you traverse using rules for a,b,c above you will either get a list with elements (touched during traversal) or you will get an empty list. One last thing: if a and b are equal , then also you get an empty list
|
||||
|
|
|
Python slicing notation:
The notation extends to (numpy) matrices and multidimensional arrays. For example, to slice entire columns you can use:
Slices hold references, not copies, of the array elements. If you want to a separate copy an array, you can use |
||||
|
|
protected by Jon Clements Feb 8 at 9:20
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
