In Python For loop, the last index value is not processed. Why?
to=np.shape(aStaffs)[0]-1 # gives 4 (5 items, but I do not use index 0)
print("to:",to," ",end=" ")
for stf in range(1,to,1):
print("stf:",stf," ",end=" ")
# BUT stf only gives, 1,2,3, not 4