in Python how do i loop through list starting at a key and not the beginning. e.g.
l = ['a','b','c','d']
loop through l but starting at b e.g. l[1]
|
in Python how do i loop through list starting at a key and not the beginning. e.g.
loop through |
||||
|
Just use slicing:
It will generate a new list with the items before
|
||||
|
|
|
My 5 cent:
|
||||
|
|
|
This will loop through items in l beginning with 1:
|
|||
|
|
|
The syntax for slicing a list like this is: To answer your question:
|
|||
|
|
'b'? – Tim Pietzcker Jun 9 '11 at 15:29