How can I iterate over a list beginning from a specific index.
for example:
lst = ["a", "b", "c", "d", "e", "f"]
I want to start iterating from list(3) which is "d", but I want the iteration to continue over all elements. So it will iterate in this order "d", "e", "f", "a", "b", "c".
Is it possible?
list. It'll clash with the builtinlist(docs.python.org/2/library/functions.html#list)