-
123456789import randomprint(random.sample(range(1,46),6))lotto = random.sample(range(1,46),6)print(type(lotto))print(lotto)lotto.sort()print(lotto)
cs
1 2 3 4 5 6 7 8 9 | import random print(random.sample(range(1,46),6)) lotto = random.sample(range(1,46),6) print(type(lotto)) print(lotto) lotto.sort() print(lotto) | cs |