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)
相关文章
相关标签/搜索