kunsu's archive
이곳은 그냥 나를 위한 개인적인 아카이브입니다 :)
Thursday, March 7, 2019
python random으로 list에서 element 선택하기
간단한 테스트를 위해서 리스트에서 하나의 요소만 선택해서 실험을 할 경우 random.choice 함수를 사용할수 있다.
import random
rnd = random.SystemRandom()
a = list(range(1,7))
print(rnd.choice(a))
No comments:
Post a Comment
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment