list1 = ['a', 'c', 'e'] list2 = ['b', 'd', 'f'] list3 = [ item for tmp in zip(list1, list2) for item in tmp] # list3 = ['a', 'b', 'c', 'd', 'e', 'f']