I currently have one list with x amount of items (number of items may change each time I use the program).
Example:
['This is in index 0, This is in index 0, This is in index 0, This is in index 0' ,
'This is in index 1, This is in index 1, This is in index 1']
I would like to be able to split each index into different lists and have each index of the newly created lists separated by the comma to produce something like below.
['This was in index 0,' 'This was in index 0,' 'This was in index 0,' 'This was in index 0']
['This was in index 1,' 'This was in index 1,' 'This was in index 1']
This is the my first ever attempt at writing anything useful so any help and explanations would be hugely appreciated.