python for loop start at 2 code example
Example 1: for loop python start at 1
# starts at 1 up to, but not including, 5
for i in range(1, 5)
print(i)
Example 2: for in list start with index python
for item in some_list[2:]:
# do stuff
#This will start at the third element and iterate to the end.