你得先安裝numpy庫,矩陣(ndarray)的shape屬性可以獲取矩陣的形狀(例如二維數組的行列),獲取的結果是一個元組,因此相關代碼如下:
importnumpyasnpx=np.array([[1,2,5],[2,3,5],[3,4,5],[2,3,6]]
)#輸出數組的行和列數printx.shape#(4,3)#只輸出行數printx.shape[0]#4#只輸出列數printx.shape[1]#3
你得先安裝numpy庫,矩陣(ndarray)的shape屬性可以獲取矩陣的形狀(例如二維數組的行列),獲取的結果是一個元組,因此相關代碼如下:
importnumpyasnpx=np.array([[1,2,5],[2,3,5],[3,4,5],[2,3,6]]
)#輸出數組的行和列數printx.shape#(4,3)#只輸出行數printx.shape[0]#4#只輸出列數printx.shape[1]#3