numpy-訪問某一列數據

 訪問二維列表n的第x列:n[:, x]python import numpy as np n = np.arange(100).reshape(10,10) n_column_0 = n[:, 0] print(n_column_0)
相關文章
相關標籤/搜索