hey guys, how would you access an array from array[n] in an array of 100 floats in this for loop (i need the enumerate):
for index,value in enumerate(array):
#do stuff with array[n]
n=n+1
im trying to make it so that it operates in a smaller and smaller space each iteration..
thanks