What is the pythonic way of doing the following:
I have two lists a and b of the same length n, and I want to form the list
c = [a[0], b[0], a[1], b[1], ..., a[n-1], b[n-1]]
What is the pythonic way of doing the following:
I have two lists a and b of the same length n, and I want to form the list
c = [a[0], b[0], a[1], b[1], ..., a[n-1], b[n-1]]