How can I merge the two lists in one by selecting 1st element from 1st list 2nd element from second list 2nd element...and then 3rd element from 1st list 3rd element
list 1=[a,b,c,d,e,f,] and
list 2=[g,h,i,j,k,l]
the required list is
list 3=[a,h,c,j,e,l]
in Python
I tried slicing with two loop it doesn't work for me