파이썬 리스트 원소 랜덤추출

Python

Posted by kwon on 2019-08-19

리스트 원소 랜덤추출

1
2
3
4
5
6
7
8
9
10

import random

#중복 허용
count = 2
sampleList = ['a', 'b', 'c', 'd', 'e']
print [random.choice(sampleList) for i in range(count)]

#중복 허용 X
print random.sample(sampleList, count)