Hacker News new | past | comments | ask | show | jobs | submit login

itertools.islice would work.



No it won't, unless you `tee` an iterator first.


FYI, the official documentation of itertools has its very own pairwise example:

    def pairwise(iterable):
      "s -> (s0,s1), (s1,s2), (s2, s3), ..."
      a, b = tee(iterable)
      next(b, None)
      return izip(a, b)
https://docs.python.org/2/library/itertools.html#itertools.i...


for the record: the official itertools docs have a lot more examples than this one and they're all really worth knowing about if not studying.




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: