python獲取數(shù)組行數(shù)和列數(shù)的方法:
importnumpyasnp
x=np.array([[1,2,5],[2,3,5],[3,4,5],[2,3,6]])
#輸出數(shù)組的行和列數(shù)
printx.shape#(4,3)
#只輸出行數(shù)
printx.shape[0]#4
#只輸出列數(shù)
printx.shape[1]#3
shape函數(shù)是numpy.core.fromnumeric中的函數(shù),它的功能是查看矩陣或者數(shù)組的維數(shù)。
shape[0]表示第一維行數(shù)
shape[1]表示第二維列數(shù)
以上內(nèi)容為大家介紹了python如何判斷多維數(shù)組多少列,希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。