Say I have two lists with strings:
list_a=["a", "c", "e"]
list_b=["b", "d", "f"]
I tried
combined = zip(list_a, list_b)
which forms a vertical list, but then I could only print it in the form of
[(a, b,), (c, d), (e, f)]
How could I achieve a list in the form of:
combined = ["a", "b", "c", "d", "e", "f"]