python numpy建立二維數組

import numpy as np a = np.array([[1,23,4],[2,4,5]]) #建立二維數組 b = a[:,:-1] #行取所有,列取第0列到倒數第二列 print(a) print(b)
相關文章
相關標籤/搜索