Let say i have two lists that is intended to be merged:
a=[0.1,0.2,'-','-',0.3]
b=['-','-',0.4,0.5,'-']
how to merge a and b to its current position to be like this?
c=[0.1,0.2,0.4,0.5,0.3]
thanks
Let say i have two lists that is intended to be merged:
a=[0.1,0.2,'-','-',0.3]
b=['-','-',0.4,0.5,'-']
how to merge a and b to its current position to be like this?
c=[0.1,0.2,0.4,0.5,0.3]
thanks