개발로그필름
[python] random() 함수를 이용한 랜덤 숫자 뽑기 (예제 코드) 본문
728x90
반응형
SMALL
from random import *
print(random()) # 0.0 ~ 1.0 미만의 임의의 값 생성
print(random() * 10) # 0.0 ~ 10.0 미만의 임의의 값 생성
print(int(random() * 10)) # 0 ~ 10 미만의 임의의 값 생성
print(int(random() * 10)) # 0 ~ 10 미만의 임의의 값 생성
print(int(random() * 10)) # 0 ~ 10 미만의 임의의 값 생성
print(int(random() * 10) + 1) # 1 ~ 10 이하의 임의의 값 생성
print(int(random() * 10) + 1) # 1 ~ 10 이하의 임의의 값 생성
print(int(random() * 10) + 1) # 1 ~ 10 이하의 임의의 값 생성
print(int(random() * 10) + 1) # 1 ~ 10 이하의 임의의 값 생성
print(int(random() * 10) + 1) # 1 ~ 10 이하의 임의의 값 생성
print(int(random() * 10) + 1) # 1 ~ 10 이하의 임의의 값 생성
print(int(random() * 45 + 1)) # 1 ~ 45 이하의 임의의 값 생성
print(int(random() * 45 + 1)) # 1 ~ 45 이하의 임의의 값 생성
print(int(random() * 45 + 1)) # 1 ~ 45 이하의 임의의 값 생성
print(int(random() * 45 + 1)) # 1 ~ 45 이하의 임의의 값 생성
print(int(random() * 45 + 1)) # 1 ~ 45 이하의 임의의 값 생성
print(int(random() * 45 + 1)) # 1 ~ 45 이하의 임의의 값 생성
print(randrange(1, 46)) # 1 ~ 46 미만의 임의의 값 생성
print(randrange(1, 46)) # 1 ~ 46 미만의 임의의 값 생성
print(randrange(1, 46)) # 1 ~ 46 미만의 임의의 값 생성
print(randrange(1, 46)) # 1 ~ 46 미만의 임의의 값 생성
print(randrange(1, 46)) # 1 ~ 46 미만의 임의의 값 생성
print(randrange(1, 46)) # 1 ~ 46 미만의 임의의 값 생성
print(randint(1, 45)) # 1 ~ 45 이하의 임의의 값 생성
반응형
LIST
'IT > Python' 카테고리의 다른 글
[python] 전달값과 반환값 (0) | 2022.11.23 |
---|---|
[python] 기본값, 키워드값 (0) | 2022.11.22 |
[python] 문자열 포맷 하는 다양한 방법 (코드 예시) (0) | 2022.11.21 |
[python] 탈출문자 (다양한 탈출문자 설명, 예시 코드) (0) | 2022.11.21 |
[python] 리스트 코드 예시 (0) | 2022.11.21 |
Comments