What is the best way to set a start index when iterating a list in Python. For example, I have a list of the days of the week - Sunday, Monday, Tuesday, ... Saturday - but I want to iterate through the list starting at Monday. What is the best practice for doing this?
|
|
You can use slicing:
This will start at the third element and iterate to the end. |
|||
|
|
|
This has the advantage that it doesn't need to copy part of the list
|
|||
|
|
|
If all you want is to print from
|
||||
|
|
|
Here's a rotation generator which doesn't need to make a warped copy of the input sequence ... may be useful if the input sequence is much larger than 7 items.
|
|||
|
|
stdlib will hook you up son! deque.rotate()
|
|||
|
|
|
You can always loop using an index counter the conventional C style looping:
It is always better to follow the "loop on every element" style because that's the normal thing to do, but if it gets in your way, just remember the conventional style is also supported, always. |
|||
|
|
|
If you want to "wrap around" and effectively rotate the list to start with Monday (rather than just chop off the items prior to Monday):
|
||||
|
|