I would like to loop through a list checking each item against the one following it.
Is there a way I can loop through all but the last item using for x in y? I would prefer to do it without using indexes if I can.
|
|
|
|
|
|
|
If Edit For those people downvoting this answer because you think it doesn't answer the question, read the question carefully. Note the sentence which ends in a question mark, that is the curly thing with a dot below it, like this: ?. If that does not satisfy you, then perhaps the fact David has accepted this as the answer will. If that doesn't either, then go right ahead. David: You are welcome to unaccept this answer so I can delete it. This answer is causing my grief. |
||||||||||||||||
|
|
|
the easiest way to compare the sequence item with the following:
|
||||||||||
|
|
|
If you want to get all the elements in the sequence pair wise, use this approach (the pairwise function is from the examples in the itertools module).
If you need to compare the last value to some special value, chain that value to the end
|
||||||
|
|
|
if you meant comparing nth item with n+1 th item in the list you could also do with
note there is no hard coding going on there. This should be ok unless you feel otherwise. |
||
|
|
|
To compare each item with the next one in an iterator without instantiating a list:
|
||
|