Python基礎 切片索引、布爾索引、花式索引

切片索引、布爾索引、花式索引是數組的三種索引方式,但三者對於原數據的影響是不一樣的:python 1)切片索引數組 #切片索引 切片是原結構的照片 改變切片中的元素 原結構跟着改變 a = np.arange(15).reshape(5,3) print(a) b1 = a[:2,2] print() print(b1) b1[0] = 16 print(a) 結果爲:code 可見修改b1
相關文章
相關標籤/搜索