📜  如何寻址二维数组中的一列python代码示例

📅  最后修改于: 2022-03-11 14:45:57.403000             🧑  作者: Mango

代码示例1
>>> import numpy as np
>>> A = np.array([[1,2,3,4],[5,6,7,8]])

>>> A
array([[1, 2, 3, 4],
    [5, 6, 7, 8]])

>>> A[:,2] # returns the third columm
array([3, 7])