a=np.array([1,2,5]) b=np.array([10,12,15]) # a.extend(b) # AttributeError: 'numpy.ndarray' object has no attribute 'extend' a_list=list(a)
確定! 回上一頁