Transposing Data
Given data-table data like below:
A,B,C,D,E,F
G,H,I,J,K,L
M,N,O,P,Q,R
S,T,U,V,W,X
Y,Z,a,b,c,d
e,f,g,h,i,j
transpose data so that columns would become rows like below:
A,G,M,S,Y,e
B,H,N,T,Z,f
C,I,O,U,a,g
D,J,P,V,b,h
E,K,Q,W,c,i
F,L,R,X,d,j
Hints:
- List of list
- File