I have a list in this way:
list = [1,2,3,4,5,6,7,8,9]
And reorder it like so:
list2 = [[1,4,7],[2,5,8],[3,6,9]]
Basically paring it with list comprehension the first element with the 4th and 7th, the second with 5th and 8th, and the third with the 6ht and 9th, so skipping every two values.