랜덤 난수
2019. 5. 27. 10:56
Programing/Python
리스트에서 무작위로 가져오기
import random
animals = ['체셔고양이','오리','강아지']
print(random.choice(animals)
-------------------
오리
값들 중 몇개를 가져오기
import random
animals = ['체셔고양이','오리','강아지']
print(random.sample(animals,2)
----------
['오리','강아지']