for example:
a=[1,2,3,4,5,6]
b=[7,8,9,10,11,12]
then result:
c=[1,7,2,8,3,9,4,10,5,11,6,12]
How do you concatenate two lists,so that the elements are in alternative positions??
i have tried to link them in to a new list and rearrange but its not coming. it would be nice if you could tell me the long way(without using built in functions too much).I m new to python and not much is taught in my school. Thank you.