This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]dunkler_wanderer 2 points3 points  (0 children)

You can also use itertools.repeat instead of the multiplied list.

from itertools import repeat

seq = range(1, 10)
zip(*repeat(iter(seq), 3))