I have the following list output data in Python and would like to export it into a spreadsheet
data = [list[1], list[2], list[3]]
I want the following output to display as separate columns in excel
List1 List2 List3
['A', 'Test', '3rd Column']
['B', 'Test1', '3rd Column']
['A', 'Test2', '3rd Column']