vote up 1 vote down star

Can you make it more simple/elegant?

def zigzag(seq):
    """Return two sequences with alternating elements from `seq`"""
    x, y = [], []
    p, q = x, y
    for e in seq:
        p.append(e)
        p, q = q, p
    return x, y
flag

59% accept rate

3 Answers

vote up 14 vote down check

If seq, as you say, is a list, then:

def zigzag(seq):
  return seq[::2], seq[1::2]

If seq is a totally generic iterable, such as possibly a generator:

def zigzag(seq):
  results = [], []
  for i, e in enumerate(seq):
    results[i%2].append(e)
  return results
link|flag
SO is making so lazy. – Sridhar Ratnakumar Sep 18 at 17:58
vote up 6 vote down

This takes an iterator and returns two iterators:

 import itertools
 def zigzag(seq):
     t1,t2 = itertools.tee(seq)
     even = itertools.islice(t1,0,None,2)
     odd = itertools.islice(t2,1,None,2)
     return even,odd

If you prefer lists then you can return list(even),list(odd).

link|flag
vote up 5 vote down
def zigzag(seq):
    return seq[::2], seq[1::2]
link|flag
Only works for lists while the other solution works for any iterable. – Nick Stinemates Sep 18 at 5:59
1  
true, but title did specify a list – cobbal Sep 18 at 6:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.