I found the answer here but it doesn't work for me Accessing the index in Python 'for' loops
I'm trying to loop from the second index
ints = [1, 3, 4, 5, 'hi']
for indx, val in enumerate(ints, start=1):
print indx, val
for i in range(len(ints)):
print i, ints[1]
My output is this
1 1
2 3
3 4
4 5
5 hi
0 3
1 3
2 3
3 3
4 3
I need to get the first integer printed out at index 1 and loop through to the end.