I have the following list:
['123456789', '234567891', '345678912', '456789123', '567891234', '789123456', '891234567', '912345678']
I am trying to create 9 separate list from this one, each containing the first, second, third element of each of the elements of this list. The list should contain ints,for example the first two lists would be:
[1,2,3,4,5,6,7,8,9]
[2,3,4,5,6,7,8,9,1]
I realise the two lists are just the first two elements of the main lists with ints. But I'm trying to create them from the only the first&second element of each of the elements in the big list, so I think some for loop is needed.