“Python Transpose List” Ответ

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

Python Transpect Sist из списков

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

Список 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

транспонированный список

x = [[0,1],[2,3]]
np.transpose(x).tolist()
array([[0, 2],
       [1, 3]])
Zany Zebra

Ответы похожие на “Python Transpose List”

Вопросы похожие на “Python Transpose List”

Больше похожих ответов на “Python Transpose List” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования