I need to loop over a list of objects, comparing them like this: 0 vs. 1, 1 vs. 2, 2 vs. 3, etc. (I’m using pysvn to extract a list of diffs.) I wound up just looping over an index, but I keep wondering if there’s some way to do it which is more closely idiomatic. It’s Python; shouldn’t I be using iterators in some clever way? Simply looping over the index seems pretty clear, but I wonder if there’s a more expressive or concise way to do it.
for revindex in xrange(len(dm_revisions) - 1):
summary = \
svn.diff_summarize(svn_path,
revision1=dm_revisions[revindex],
revision2 = dm_revisions[revindex+1])
This is called a sliding window. There’s an example in the
itertoolsdocumentation that does it. Here’s the code:What that, you can say this:
Of course you only care about the case where n=2, so you can get away with something much simpler: