I have a list of tuples, and inside that tuple, I have 2 lists. It looks something like the following:
value=[(['55', '56', '57', '58', '2'], ['59', '60', '61', '62', '2']), (['63', '64', '65', '66', '2'], ['51', '52', '53', '54', '2'])]
From each tuple's 2 lists, I want to create a list which will also have the same length, (in this above example, of length 5), and I want to do this for each tuple in the outer list. For example, with the above example, the first value of the first final list will be either 55 or 59, the 2nd value of the final list will be either from 56 or 60, and so on.
One possible outcome will be:
['59', '60', '57', '58', '2'] and ['63', '52', '53', '66', '2']
How can I do it?