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
|
|
|
|
|
|
|
If
If
|
|||
|
|
|
This takes an iterator and returns two iterators:
If you prefer lists then you can |
||
|
|
|
|
|
||||||
|