We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9555aa commit 9dd5040Copy full SHA for 9dd5040
lotto.py
@@ -0,0 +1,9 @@
1
+import random
2
+
3
+print("로또 번호 생성기")
4
+num = int(input("게임수 입력 :"))
5
6
+for i in range(0, num):
7
+ lotto = random.sample(range(1, 46), 6)
8
+ lotto.sort()
9
+ print(lotto)
0 commit comments