There are various useful functions in the numpy library. Thus, I left them here to use later. Numpy 라이브러리에는 다양한 유용한 기능이 있습니다. 나중에 사용하기 위해 여기에 간단한 설명과 함께 남겨 두었습니다. 1. shape # shape : dimension of the array print(arr1.shape) 2. zeros # zeros(size, dtype=) : dtype in bool/float/int, default is float arr6 = np.zeros(((3,2)), dtype=int) 3. random # random(shape) : shape dimension random number array ..