Answers for "transpose list of list numpy python"

3

python transpose list

list_of_lists = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

numpy_array = np.array(list_of_lists)
transpose = numpy_array.T

transpose_list = transpose.tolist()
Posted by: Guest on June-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language