Is there a way to do something like this for each list in a numpy array without combining?:
for item, nextItem in zip(list,list[1::]):
My numpy