Given two lists, I want to merge them so that all elements from the first list are even-indexed (preserving their order) and all elements from second list are odd-indexed (a
If you have same length lists, you can use this:
result = [ item for tup in zip(x,y) for item in tup ]