저는 로또번호 추첨 아래와 같이 만들어보았습니다.
import random
Lotto_num = [] # 빈 로또 번호 리스트 생성
def Lotto():
count = 0
while True:
i = random.randint(1,45)
if count > 5 :
break
if i not in Lotto_num:
Lotto_num.append(i)
count = count + 1
print(Lotto_num)
Lotto()
로또 예상번호 퀴즈
서주희
작성일
23.03.14 01:29
조회수
273
댓글 0