I am trying to print things from 2 lists one after another.
ls1 = ['Apple', 'Orange', 'Banana', 'Morty']
ls2 = ['Pineapple', 'Carrot', 'Rick', 'Tangelo']
I would usually do:
for fruit in ls1:
print(fruit)
for fruit in ls2
print(fruit)
but that will cycle though one list then the other. I want the output to alternate between the lists in order:
Apple
Pineapple
Orange
...etc...
or
ls1[0]
ls2[0]
ls1[1]
ls2[1]
...etc...