I have two lists
l1= [1,2,3,4,5,6,7]
l2 = [1,2,3,4,5,6,7,8,9,77,66,]
I want to display them on same lines
"list1 text" "list2 text"
l1-1 , l2-1
l1-2 , l2-2
and so on
so that if list elements finish then it should display blank "" in front of it but other side shows its own elements like
for a,b in l1,l2
<td>a</td><td> b </td>