“Python transponuj listę list” Kod odpowiedzi

Lista Python Transpose

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()
Exuberant Eland

Python transponuj listę list

import numpy as np
a = [[1, 4, 7], [2, 5, 8], [3, 6, 9]]
np.array(a).T.tolist()
Xerothermic Xenomorph

Lista Python Transpose

# Use numpy. T to transpose a list of lists, from kite.com

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

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

transpose_list = transpose.tolist()
Exuberant Eland

Odpowiedzi podobne do “Python transponuj listę list”

Pytania podobne do “Python transponuj listę list”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu