“Lista de Python Transpost” Respostas de código

Lista de transposição de Python

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

Lista de Python Transpost

# 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

Lista de transposição

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

Respostas semelhantes a “Lista de Python Transpost”

Perguntas semelhantes a “Lista de Python Transpost”

Mais respostas relacionadas para “Lista de Python Transpost” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código