Skip to content

Tag: split

Python split string in moving window

I have a string with digits like so – digit = “7316717” Now I want to split the string in such a way that the output is a moving window of 3 digits at a time. So I get – [“731”, “316”, “167”, “671”, “717”] How would the approa…