You can use slicing:
for item in some_list[2:]:
# do stuff
This will start at the third element and iterate to the end.
You can use slicing:
for item in some_list[2:]:
# do stuff
This will start at the third element and iterate to the end.