[Python] 파이썬으로 로또 추첨 번호 자동 생성하기

코드

import  random

##함수
def getNumber():
    return random.randrange(1,46) #1~45

##변수
lotto=[]
num=0

#메인
print("로또 추첨을 시작합니다.\n");
while True :
    num=getNumber()

    if lotto.count(num) ==0 :
        lotto.append(num)

    if len(lotto)>=6 :
        break

print("추첨된 로또 번호 : " ,end="")
for i in range(0,6) :
    print("%d " % lotto[i], end="")

실행 후 결과

댓글 쓰기

0 댓글