import numpy as np a = np.genfromtxt('Table.csv', delimiter=',', dtype=float) res = np.flip(a,1).T print(res)