So I want to change this nested(list) lets call it X
[['What if?', ' 2014', ' Randall Munroe'], ['Thing Explainer', ' 2015', ' Randall Munroe'], ['Alan Turing: The Enigma', ' 2014', ' Andrew Hodges']]
To This nested(list) lets it Y
[['What if', 'Thing Explainer', 'Alan Turing: The Enigma'], [ 2014,2015,2014], ['Randall Munroe, Randall Munroe, 'Andrew Hodges']]
The first term in Y is the first item in the ith term in X.
['What if', 'Thing Explainer', 'Alan Turing: The Enigma']
The second term in Y is the second item in the ith term in X
['Randall Munroe, Randall Munroe, 'Andrew Hodges']
Can anyone share there thought process and solutions in python?