I have two lists which contain titles and links to interesting pages (trying to write a scraper).
Where I'm falling down is on the actual printing.
for i in var1:
print i
for a in var2:
print a
Prints all of list 1 and then all of list 2. If I try this
for i in var1:
print i
for a in var2:
print a
I get one of var1 printed, then 10 of var2 this continues till end of list.
How can I get python to print 1 line from list 1, 1 line from list 2 and then continue till the lists are finished?
THank you in advance.