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 12:46
조회수
214
댓글 0