Skip to content
Advertisement

Splitting a Python list into a list of overlapping chunks

This question is similar to Slicing a list into a list of sub-lists, but in my case I want to include the last element of each previous sub-list as the first element in the next sub-list. And I have to take into account that the last sub-list always has to have at least two elements.

For example:

JavaScript

The result for a size 3 sub-list:

JavaScript

Advertisement

Answer

The list comprehension in the answer you linked is easily adapted to support overlapping chunks by simply shortening the “step” parameter passed to the range:

JavaScript

Other visitors to this question mightn’t have the luxury of working with an input list (slicable, known length, finite). Here is a generator-based solution that can work with arbitrary iterables:

JavaScript

Note: I’ve since released this implementation in wimpy.util.chunks. If you don’t mind adding the dependency, you can pip install wimpy and use from wimpy import chunks rather than copy-pasting the code.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement