I have the following data structure:
data = (['test1','test2','test3'], ['foo1','foo2','foo3'], ['bar1','bar2','bar3'])
I want to iterate through this data structure and create a new tuple which appends position 1 of each list to it. I would like to create a data structure with
(test1,foo1,bar1), (test2,foo2,bar2), (test3,foo3,bar3)