Pretty much all questions I saw re: this problem were more about concatenation or doing something like adding spaces between elements in a list.
Suppose I had:
a = [1, 3, 5, 7, 9]
b = [2, 4, 6, 8, 10]
I'd like for an element in b to be appended after each element in a, so that I would end up with c = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]. How would I go about this?