관리 메뉴

웹개발자의 기지개

[python] 로또 번호 생성기 본문

python/파이썬 교육

[python] 로또 번호 생성기

http://portfolio.wonpaper.net 2020. 6. 18. 10:32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import random
 
# 사용자정의 함수 선언
def getNumber():
    return random.randrange(1,46)
 
# 전역변수 선언
lotto = []
num = 0
 
# 메인 코드
if __name__ == '__main__':
    print("로또 생성")
    while True:
        num = getNumber()
        if lotto.count(num)==0:
            lotto.append(num)
        if len(lotto) >= 6:
           break
    print("추첨 로또번호 -> ",end="")
    lotto.sort()
    for i in lotto:
        print("%d " % i, end=" ")
 
cs

 

로또 생성

추첨 로또번호 -> 20 28 33 36 40 44

 

Comments