sampling with replacement (복원 추출)을 하려면
random.sample(range(a,b),c)
random.sample() 을 이용한다. sampling without replacement (비복원 추출)을 하려면
random.choices(range(a,b),k=c)
random.choices() 을 이용한다.