I have a list of tuples that looks like this:
x = [(1, 6), (2, 7), (3, 8), (4, 9), (5, 10)]
What is the most pythonic and efficient way to convert into a list of 2 lists where each list respectively has all values of a specific index? Like so:
y = [[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]]
Is it possible to do this without a loop?