“Daftar Transpose Python” Kode Jawaban

Daftar Transpose 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

Daftar daftar python transpose

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

Daftar 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

Daftar transpose

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

Jawaban yang mirip dengan “Daftar Transpose Python”

Pertanyaan yang mirip dengan “Daftar Transpose Python”

Lebih banyak jawaban terkait untuk “Daftar Transpose Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya