I have this below list of tuples in Python:
FINAL ZIPPED LIST = [('http://abc123.com/Kit.docx', 'File 1'), ('http://abc123.com/Kit.docx', 'File 2'),...]
I want to convert this into a list of lists. Something like this:
FINAL ZIPPED LIST = [['http://abc123.com/Kit.docx', 'File 1'], ['http://abc123.com/Kit.docx', 'File 2'],...]
How can I do this?