Suppose I have a list [a,b,c,d,e], I want to create a list of tuples [(a,b,c),(b,c,d),(c,d,e)]. Is it possible without using array indices as my loop variable? What is the best way of doing this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This zips together the elements. Each iteration corresponds to li[i], li[i+1], li[i+2], hence solving the original problem. |
|||
|
|
Not sure this satisfies your constraints, but it should do it.
|
|||
|
|
|
I keep this handy function around for when I want to do this.
|
|||
|
|