-
1234567import randomgame = int(input("몇게임?"))for i in range(0,game):lotto = random.sample(range(1,46),6)lotto.sort()print(i+1,"게임 : ", lotto)
cs
1 2 3 4 5 6 7 | import random game = int(input("몇게임?")) for i in range(0,game): lotto = random.sample(range(1,46),6) lotto.sort() print(i+1,"게임 : ", lotto) | cs |