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
islice has the advantage that it doesn't need to copy part of the list
from itertools import islice for day in islice(days, 1, None): ...