Notice
Recent Posts
Recent Comments
준호씨의 블로그
python random 값 구하기 본문
반응형
# 1~10 사이의 랜덤값
random.randint(1, 10)
응용
import random
test_array = ['apple', 'mango', 'banana']
test_array[random.randint(0, len(test_array)-1)]
반응형
'개발이야기' 카테고리의 다른 글
perl LWP::UserAgent 모듈을 이용해서 http get 하기 (0) | 2016.10.13 |
---|---|
osx brew 로 php 설치 및 apache 와 연동 (0) | 2016.10.12 |
python sleep, 잠시 멈추기 (0) | 2016.10.12 |
perl - 모듈 삭제하기 (cpanm 을 이용하여) (0) | 2016.09.29 |
openssl 버전확인 방법 (0) | 2016.09.29 |
Comments