https://numpy.org/doc/stable/reference/random/generated/numpy.random.randint.html?highlight=randint#numpy.random.randint numpy.random.randint — NumPy v1.23 Manual Output shape. If the given shape is, e.g., (m, n, k), then m * n * k samples are drawn. Default is None, in which case a single value is returned. numpy.org (low, high> 임 원하는 shape를 size로 주고 최대 값과 최소 값을 설정할 수 있다. 예시. 원하는 shape : (2,3,4..
Numpy 라이브러리에서는 Numpy Array에 한해, 특별한 overloading을 제공한다. 사칙연산 같은 간단한 연산에 사용할 수 있다. C/C++ 에서는 자료형이 다르면 당연히 연산이 불가능하다. // We cannot operate different types under C/C++ int myArray[4] = {1, 2, 3, 4}; int num = 100; // This is an error int newArray = myArray + num Python 에서도 마찬가지이다. 다른 종류의 자료형끼리는 연산이 안된다. myList = [1,2,3,4] num = 100 newList = myList + num # TypeError: can only concatenate list (not "..