Hello, I have a python array
array={1,2,3,4]
Now I like to retrieve the values in the array using for xxx in range (y)
for index in range(4):
print(array[index])
result: I get all 4 array values-1,2,3,4
but if I use
for index in range(3):
print(array[index])
result: I only get 3 array values-1,2,3
Does in range not start on index 0? Thanks.