Для начала в списке с индексным Python

for item in some_list[2:]:
    # do stuff

#This will start at the third element and iterate to the end.
peamdev