In Python I can easily extract pairs out of lists:
>>>list1 = [1, 2, 3]
>>>list2 = [4, 5, 6]
>>>zip(list1, list2)
[(1, 4), (2, 5), (3, 6)]
How can I achieve the same result in Stata? If I have two locals, both containing the same number of elements, how can produce a Python-like "zip"? (Googling this is a nightmare because of the zero-inflated Poisson - i.e., ZIP - model...)