时间:2021-07-01 10:21:17 帮助过:14人阅读
In [1]: a=[[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]]
In [2]: print map(list,zip(*a))
[[1, 4, 7, 10], [2, 5, 8, 11], [3, 6, 9, 12]]
[[row[i] for row in matrix] for i in range(len(matrix[0]))]
用excel的话建议用pandasimport pandas as pd
df = pd.read_excel('你的文件路径','第几个sheet', header = False) #读取文件 比如 df = pd.read_excel('C:/your_data.xlsx',0, header = False)
df_T = df.T #获得矩阵的转置
df_T.to_excel('要保存的文件路径', sheet_name='我的表名') #保存文件 比如 df_T.to_excel('C:/test.xlsx', sheet_name='sheet 1')
可以用numpy里的matrix .T来转置
2W多列的话只能存成CSV格式了。sample input:
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15