개발로그필름

[python] random() 함수를 이용한 랜덤 숫자 뽑기 (예제 코드) 본문

IT/Python

[python] random() 함수를 이용한 랜덤 숫자 뽑기 (예제 코드)

yuullog 2022. 11. 21. 12:39
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
Comments