Suppose I have this list:
thelist = ['apple','orange','banana','grapes']
for fruit in thelist:
This would go through all the fruits.
However, what if I wanted to start at orange? Instead of starting at apple? Sure, I could do "if ...continue", but there must be a better way?