I regularly find my self in the position of needing to slice lists with "sliding windows"
Like if I have the list {1,2,3,4,5,6,7,8} I would like to return {{1,2},{2,3},{3,4}..etc}
Just found this great way of doing it in dynamo. (I'm sure there are many ways of doing it, but quite simple this one anyways.)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import islice | |
a=IN[0] | |
n=IN[1] | |
z = (islice(a, i, None) for i in range(n)) | |
OUT=zip(*z) |