I have:
A = ['a1', 'a2', 'a3']
B = ['b1', 'b2', 'b3']
I am trying to get (ideally by one line of code):
['a1', b1', 'a2', 'b2', 'a3', 'b3']
I can get
[('a1', 'b1'), ('a2', 'b2'), ('a3', 'b3')]
from
[(i,j) for i,j in zip(A,B)]
but then I will need to work on flattening it.