pour dans la liste commence par index python

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

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