I have 3 lists
a = [1,2,3]
b = [3,4,5]
c = [6,7,8]
I want to merge those list to a new list element-wise but have not found a way to do so.
The only way I found is with zip()
but then I get a tuple. But it should not be a tuple.
Desired output:
new_list = [1,3,6,2,4,7,3,5,8]
How can I achieve that?
With list(zip(a,b,c))
I get [(1,3,6),(2,4,7),(3,5,8)]
. I don't want that.