a = np.array([0, 1, 2]) np.tile(a, 2) # shape=(6,) # array([0, 1, 2, 0, 1, 2]). 배열 a를 선언합니다. 그 다음 tile 함수를 이용해서 reps=2로 ...
確定! 回上一頁