I have two lists -
lst1 = ["apple", "orange", "banana"]
lst2 = ["cherry", "grape", "pear"]
I want to print in this sequence-
apple
orange
banana
cherry
grape
pear
How do I do this in 1 for loop?
EDIT: to clarify my question - I don't want to add the two lists into a 3rd list and then print. Can I do it directly in a single for loop?