[Solved] How do I print two kinds of lines one by one


I am not sure I understand you question,
but if I do, you are asking for something like this:

names = ["Michael", "John"]
surnames=["Jackson" ,"Lennon"]
for i, j in names, surnames:
    print i
    print j

You could have a dictionary with corresponding first names and surnames as well.

1

solved How do I print two kinds of lines one by one