With the structure:
mylist = [ [a,b,c,d], [e,f,g,h], .......[w,x,y,z]]
How can I export to a .csv file using each column and row like? Is there useful functions to quickly format lists to .csv files this way? I want each value in list to be a new tab in excel.
a   b   c   d
e   f   g   h
............
w   x   y   z
 
     
     
    