I have 2 lists:
item1
item2
item3
.
.
itemX
and
item11
item22
item33
.
.
itemXX
I would like to merge those 2 lists into one by alternating the list elements so the resulting list will be like this:
item1
item11
item2
item22
.
.
itemX
itemXX
What is the best approach to do this in python?
What I am really trying to accomplish is to build a html table with X-rows and 2 columns so I need alternating lines with elements from both lists so that elements from list1 will go to column 1 and same for list2.