numpy.random.randint

numpy.random.randint 함수는 주어진 범위에서 임의의 정수를 반환합니다.



예제1

import numpy as np

print(np.random.randint(1, 3))
1

1은 포함하고, 3은 포함하지 않아서 1 또는 2를 랜덤하게 출력합니다.



예제2

import numpy as np

print(np.random.randint(1, 3, size=10))
[2 2 2 2 1 1 1 2 1 2]

size 키워드를 이용해서 임의로 선택한 10개의 값을 어레이로 반환할 수 있습니다.



이전글/다음글

이전글 :
다음글 :