Untuk daftar mulai dengan indeks python
for item in some_list[2:]:
# do stuff
#This will start at the third element and iterate to the end.
peamdev
for item in some_list[2:]:
# do stuff
#This will start at the third element and iterate to the end.